Skip to content

Commit a0f9ef9

Browse files
committed
add 3.14 support
1 parent 93b09b2 commit a0f9ef9

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
with:
2222
fetch-depth: 0
2323

24-
- name: Set up Python 3.11
24+
- name: Set up Python 3.13
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.11'
27+
python-version: '3.13'
2828

2929
- name: Upgrade pip and nox
3030
run: |

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-latest, windows-latest, macos-latest]
24-
pyv: ['3.9', '3.10', '3.11', '3.12', '3.13']
24+
pyv: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2525
include:
2626
- {os: ubuntu-latest, pyv: 'pypy3.9'}
2727

@@ -49,7 +49,7 @@ jobs:
4949
run: nox -s lint
5050

5151
- name: Run tests
52-
run: nox -s tests-${{ matrix.nox_pyv || matrix.pyv }} -- --cov-report=xml
52+
run: nox -s tests-${{ matrix.pyv }} -- --cov-report=xml
5353

5454
- name: Upload coverage report
5555
uses: codecov/codecov-action@v5

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
@nox.session(
16-
python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.8", "pypy3.9"]
16+
python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.8", "pypy3.9"]
1717
)
1818
def tests(session: nox.Session) -> None:
1919
session.install(".[tests]", *pip_dev_flags)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
"Development Status :: 4 - Beta",
2122
]
2223
requires-python = ">=3.9"

0 commit comments

Comments
 (0)