Skip to content

Commit 84ba2b4

Browse files
committed
tests: update default python runtime to 3.14
1 parent 9340408 commit 84ba2b4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.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
@@ -66,7 +66,7 @@ jobs:
6666
- name: Setup Python
6767
uses: actions/setup-python@v5
6868
with:
69-
python-version: "3.10"
69+
python-version: "3.14"
7070
- name: Install coverage
7171
run: |
7272
python -m pip install --upgrade setuptools pip wheel

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3232

33-
DEFAULT_PYTHON_VERSION = "3.10"
33+
DEFAULT_PYTHON_VERSION = "3.14"
3434
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
3535

3636
# 'docfx' is excluded since it only needs to run in 'docs-presubmit'

0 commit comments

Comments
 (0)