Skip to content

Commit c84c1af

Browse files
feat: support python 3.14 (#1784)
1 parent 47843de commit c84c1af

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 5
1818
strategy:
1919
matrix:
20-
python-version: ["3.13"]
20+
python-version: ["3.14"]
2121
permissions:
2222
contents: read
2323
steps:
@@ -39,6 +39,7 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141
python-version:
42+
- "3.14"
4243
- "3.13"
4344
- "3.12"
4445
- "3.11"
@@ -86,7 +87,7 @@ jobs:
8687
token: ${{ secrets.CODECOV_TOKEN }}
8788
verbose: true
8889
- name: Upload test coverage to Codecov (only with latest supported version)
89-
if: startsWith(matrix.python-version, '3.13')
90+
if: startsWith(matrix.python-version, '3.14')
9091
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
9192
with:
9293
token: ${{ secrets.CODECOV_TOKEN }}

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ classifiers = [
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",
3636
"Programming Language :: Python :: 3.13",
37+
"Programming Language :: Python :: 3.14",
3738
"Programming Language :: Python :: Implementation :: CPython",
3839
"Programming Language :: Python :: Implementation :: PyPy",
3940
]

0 commit comments

Comments
 (0)