Skip to content

Commit 41939d9

Browse files
Support Python 3.13
1 parent 87d7bf4 commit 41939d9

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/primer-test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
timeout-minutes: 5
3131
strategy:
3232
matrix:
33-
python-version: [3.9, "3.10", "3.11", "3.12"]
33+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"]
3434
outputs:
3535
python-key: ${{ steps.generate-python-key.outputs.key }}
3636
steps:
@@ -72,7 +72,7 @@ jobs:
7272
needs: prepare-tests-linux
7373
strategy:
7474
matrix:
75-
python-version: [3.9, "3.10", "3.11", "3.12"]
75+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"]
7676
steps:
7777
- name: Check out code from GitHub
7878
uses: actions/[email protected]

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: [3.9, "3.10", "3.11", "3.12"]
34+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"]
3535
outputs:
3636
python-key: ${{ steps.generate-python-key.outputs.key }}
3737
steps:
@@ -175,7 +175,7 @@ jobs:
175175
strategy:
176176
fail-fast: false
177177
matrix:
178-
python-version: [3.9, "3.10", "3.11", "3.12"]
178+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"]
179179
steps:
180180
- name: Set temp directory
181181
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV

doc/whatsnew/fragments/9852.other

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Add support for Python 3.13.
2+
3+
Refs #9852

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.10",
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2728
"Programming Language :: Python :: Implementation :: CPython",
2829
"Programming Language :: Python :: Implementation :: PyPy",
2930
"Topic :: Software Development :: Debuggers",

0 commit comments

Comments
 (0)