Skip to content

Commit

Permalink
feat: add support for Python 3.13 (#1177)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon authored Oct 22, 2024
1 parent f5eebdd commit 6e6a1c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ["3.9", "3.12"]
python-version: ["3.9", "3.13"]
fail-fast: false
permissions:
contents: read
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
python-version: ["3.9", "3.13"]
fail-fast: false
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

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

TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]


@nox.session
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
platforms="Posix; MacOS X; Windows",
packages=packages,
Expand Down

0 comments on commit 6e6a1c8

Please sign in to comment.