Skip to content

Commit eaaceeb

Browse files
committed
tests: update default python runtime for tests to 3.14
1 parent dc9aa13 commit eaaceeb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.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/mypy.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.8"
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.8"
48+
python-version: "3.14"
4949
- name: Install coverage
5050
run: |
5151
python -m pip install --upgrade setuptools pip wheel

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
BLACK_VERSION = "black==23.7.0"
2323
BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
2424

25-
DEFAULT_PYTHON_VERSION = "3.8"
25+
DEFAULT_PYTHON_VERSION = "3.14"
2626
CURRENT_DIRECTORY = os.path.abspath(os.path.dirname(__file__))
2727

2828
# Error if a python version is missing
2929
nox.options.error_on_missing_interpreters = True
3030

3131

32-
@nox.session(python="3.10")
32+
@nox.session(python=DEFAULT_PYTHON_VERSION)
3333
def lint(session):
3434
"""Run linters.
3535
@@ -102,7 +102,7 @@ def unit(session):
102102
default(session)
103103

104104

105-
@nox.session(python="3.10")
105+
@nox.session(python=DEFAULT_PYTHON_VERSION)
106106
def lint_setup_py(session):
107107
"""Verify that setup.py is valid (including RST check)."""
108108

0 commit comments

Comments
 (0)