Skip to content

Commit f416f75

Browse files
authored
feat: support python 3.14 (#167)
1 parent 6e0ec21 commit f416f75

4 files changed

Lines changed: 994 additions & 595 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
os: ['windows-latest', 'ubuntu-latest']
3131
version: ['21', '20', '19', '18', '17', '16', '15', '14', '13', '12', '11', '10', '9']
3232
env:
33-
MAX_PYTHON_VERSION: '3.13'
33+
MAX_PYTHON_VERSION: '3.14'
3434
# only used when installing for a pre-released python version
3535
# LIBGIT2_VERSION: '1.9.0'
3636

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test(session: nox.Session):
5555
run_tests(session)
5656

5757

58-
MAX_VERSION = environ.get("MAX_PYTHON_VERSION", "3.13")
58+
MAX_VERSION = environ.get("MAX_PYTHON_VERSION", "3.14")
5959

6060

6161
@nox.session(

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3132
"Topic :: Software Development :: Build Tools",
3233
]
3334
dynamic = ["version"]

0 commit comments

Comments
 (0)