Skip to content

Commit 2f8f1db

Browse files
authored
chore: add python 3.13 (#510)
1 parent ca2a71a commit 2f8f1db

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

Diff for: .github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
- python: "3.10"
5050
- python: "3.11"
5151
- python: "3.12"
52+
- python: "3.13"
5253
steps:
5354
- name: Checkout
5455
uses: actions/checkout@v4

Diff for: noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
nox.options.sessions = ["lint", "test-dist"]
1010

11-
PYTHON_ALL_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
11+
PYTHON_ALL_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1212
RUNNING_CI = "TRAVIS" in os.environ or "GITHUB_ACTIONS" in os.environ
1313

1414

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
# enable version inference
77

88
[tool.black]
9-
target-version = ["py38", "py39", "py310", "py311", "py312"]
9+
target-version = ["py38", "py39", "py310", "py311", "py312", "py313"]
1010
extend-exclude = "src/auditwheel/_vendor"
1111

1212
[tool.isort]

Diff for: setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifier =
1919
Programming Language :: Python :: 3.10
2020
Programming Language :: Python :: 3.11
2121
Programming Language :: Python :: 3.12
22+
Programming Language :: Python :: 3.13
2223
Programming Language :: Python :: 3 :: Only
2324
Topic :: Software Development
2425
Topic :: Software Development :: Build Tools

Diff for: tests/integration/test_manylinux.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
PYTHON_ABI_FLAGS = "m" if sys.version_info.minor < 8 else ""
5353
PYTHON_ABI = f"cp{PYTHON_ABI_MAJ_MIN}-cp{PYTHON_ABI_MAJ_MIN}{PYTHON_ABI_FLAGS}"
5454
PYTHON_IMAGE_TAG = ".".join(PYTHON_MAJ_MIN) + (
55-
"-rc" if PYTHON_MAJ_MIN == ["3", "12"] else ""
55+
"-rc" if PYTHON_MAJ_MIN == ["3", "13"] else ""
5656
)
5757
MANYLINUX_PYTHON_IMAGE_ID = f"python:{PYTHON_IMAGE_TAG}-slim-bullseye"
5858
MUSLLINUX_IMAGES = {
@@ -84,6 +84,7 @@
8484
"310": "1.21.4",
8585
"311": "1.23.4",
8686
"312": "1.26.0",
87+
"313": "2.0.1",
8788
}
8889
NUMPY_VERSION = NUMPY_VERSION_MAP[PYTHON_ABI_MAJ_MIN]
8990
ORIGINAL_NUMPY_WHEEL = f"numpy-{NUMPY_VERSION}-{PYTHON_ABI}-linux_{PLATFORM}.whl"

0 commit comments

Comments
 (0)