Skip to content

Commit 6e6a1c8

Browse files
feat: add support for Python 3.13 (#1177)
1 parent f5eebdd commit 6e6a1c8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
matrix:
3737
os: [macos-latest, windows-latest, ubuntu-latest]
38-
python-version: ["3.9", "3.12"]
38+
python-version: ["3.9", "3.13"]
3939
fail-fast: false
4040
permissions:
4141
contents: read
@@ -134,7 +134,7 @@ jobs:
134134
runs-on: ubuntu-latest
135135
strategy:
136136
matrix:
137-
python-version: ["3.9", "3.12"]
137+
python-version: ["3.9", "3.13"]
138138
fail-fast: false
139139
permissions:
140140
contents: read

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
LINT_PATHS = ["google", "tests", "noxfile.py", "setup.py"]
2727

28-
TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
28+
TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
2929

3030

3131
@nox.session

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
"Programming Language :: Python :: 3.10",
7272
"Programming Language :: Python :: 3.11",
7373
"Programming Language :: Python :: 3.12",
74+
"Programming Language :: Python :: 3.13",
7475
],
7576
platforms="Posix; MacOS X; Windows",
7677
packages=packages,

0 commit comments

Comments
 (0)