Skip to content

Commit

Permalink
Add support for Python 3.14 (python#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Jan 6, 2025
2 parents db63d80 + 165ae70 commit 0df5d3b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = [
"version",
Expand All @@ -49,4 +50,4 @@ version-file = "src/blurb/_version.py"
local_scheme = "no-local-version"

[tool.pyproject-fmt]
max_supported_python = "3.13"
max_supported_python = "3.14"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires =
tox>=4.2
env_list =
py{313, 312, 311, 310, 39}
py{314, 313, 312, 311, 310, 39}

[testenv]
extras =
Expand Down

0 comments on commit 0df5d3b

Please sign in to comment.