Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit 35c9207

Browse files
committed
tests: update default python runtime for tests to 3.14
1 parent 088a597 commit 35c9207

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.10"
15+
python-version: "3.14"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup Python
4646
uses: actions/setup-python@v5
4747
with:
48-
python-version: "3.10"
48+
python-version: "3.14"
4949
- name: Install coverage
5050
run: |
5151
python -m pip install --upgrade setuptools pip wheel

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
ISORT_VERSION = "isort==5.11.0"
3333
LINT_PATHS = ["docs", "google_auth_oauthlib", "tests", "noxfile.py", "setup.py"]
3434

35-
DEFAULT_PYTHON_VERSION = "3.10"
35+
DEFAULT_PYTHON_VERSION = "3.14"
3636
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.10"]
3737

3838
# TODO(https://github.com/googleapis/google-auth-library-python-oauthlib/issues/410):
@@ -385,7 +385,7 @@ def docfx(session):
385385
)
386386

387387

388-
@nox.session(python="3.13")
388+
@nox.session(python=DEFAULT_PYTHON_VERSION)
389389
@nox.parametrize(
390390
"protobuf_implementation",
391391
["python", "upb", "cpp"],

0 commit comments

Comments
 (0)