Skip to content

Commit 24cad87

Browse files
committed
Add support for Python 3.14
1 parent c03b8dd commit 24cad87

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/lint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
python-version: ['3.9', '3.13']
31+
python-version: ['3.9', '3.14']
3232
steps:
3333
- uses: actions/checkout@v5
3434
- uses: actions/setup-python@v6
3535
with:
3636
python-version: ${{ matrix.python-version }}
37+
allow-prereleases: true
3738
- name: Install tox
3839
run: pip install tox
3940
- name: Run tox

.github/workflows/test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: ['3.9', '3.13']
23+
python-version: ['3.9', '3.14']
2424
steps:
2525
- uses: actions/checkout@v5
2626
- uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
29+
allow-prereleases: true
2930
- name: Install tox
3031
run: pip install tox
3132
- name: Run unit tests

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
3131
"Programming Language :: Python :: 3.13",
32+
"Programming Language :: Python :: 3.14",
3233
"Typing :: Typed",
3334
]
3435

0 commit comments

Comments
 (0)