Skip to content

Commit 720aff9

Browse files
committed
fix: explicitly declare support for Python 3.13
1 parent 221f4a8 commit 720aff9

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A few notes on making changes to ``google-auth-library-python``.
1919
using ``nox -s docs``.
2020

2121
- The change must work fully on the following CPython versions:
22-
3.7, 3.8, 3.9, 3.10, 3.11 and 3.12 across macOS, Linux, and Windows.
22+
3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and 3.13 across macOS, Linux, and Windows.
2323

2424
- The codebase *must* have 100% test statement coverage after each commit.
2525
You can test coverage via ``nox -e cover``.

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def mypy(session):
8484
session.run("mypy", "-p", "google", "-p", "tests", "-p", "tests_async")
8585

8686

87-
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"])
87+
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
8888
def unit(session):
8989
constraints_path = str(
9090
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"

samples/cloud-client/snippets/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
]
6161

6262

63-
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"])
63+
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
6464
def unit(session):
6565
# constraints_path = str(
6666
# CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
"Programming Language :: Python :: 3.10",
7373
"Programming Language :: Python :: 3.11",
7474
"Programming Language :: Python :: 3.12",
75+
"Programming Language :: Python :: 3.13",
7576
"Development Status :: 5 - Production/Stable",
7677
"Intended Audience :: Developers",
7778
"License :: OSI Approved :: Apache Software License",

testing/constraints-3.13.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)