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

Commit 490c505

Browse files
authored
tests: update default Python runtime for tests to 3.14 (#306)
1 parent f7542a1 commit 490c505

File tree

3 files changed

+4
-4
lines changed

3 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/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
@@ -36,7 +36,7 @@
3636
# Error if a python version is missing
3737
nox.options.error_on_missing_interpreters = True
3838

39-
DEFAULT_PYTHON_VERSION = "3.10"
39+
DEFAULT_PYTHON_VERSION = "3.14"
4040
BLACK_VERSION = "black==23.7.0"
4141
BLACK_PATHS = ["test_utils", "setup.py"]
4242
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
@@ -74,7 +74,7 @@ def blacken(session):
7474
@nox.session(python=DEFAULT_PYTHON_VERSION)
7575
def lint_setup_py(session):
7676
"""Verify that setup.py is valid (including RST check)."""
77-
session.install("docutils", "pygments")
77+
session.install("docutils", "pygments", "setuptools")
7878
session.run("python", "setup.py", "check", "--restructuredtext", "--strict")
7979

8080

0 commit comments

Comments
 (0)