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

Commit fda030c

Browse files
committed
build: restore DEFAULT_PYTHON_VERSION and SYSTEM_TEST_PYTHON_VERSIONS to 3.14
- Fixes 'Python interpreter 3.10 not found' error in GitHub Actions lint job. - Fixes 'system' nox session failing because GitHub Actions only provisions Python 3.14 for it.
1 parent eb5595b commit fda030c

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

noxfile.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,10 @@
3636
ISORT_VERSION = "isort==5.11.0"
3737
LINT_PATHS = ["google", "tests", "noxfile.py", "setup.py"]
3838

39-
DEFAULT_PYTHON_VERSION = "3.10"
39+
DEFAULT_PYTHON_VERSION = "3.14"
4040

4141
DEFAULT_MOCK_SERVER_TESTS_PYTHON_VERSION = "3.12"
42-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = [
43-
"3.10",
44-
"3.11",
45-
"3.12",
46-
"3.13",
47-
"3.14",
48-
]
42+
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.14"]
4943

5044
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
5145
"3.10",

0 commit comments

Comments
 (0)