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

Commit 754cc2b

Browse files
committed
Some refinements to versioning
1 parent af4e693 commit 754cc2b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
DEFAULT_PYTHON_VERSION = "3.14"
3636

3737
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
38+
"3.9",
3839
"3.10",
3940
"3.11",
4041
"3.12",
@@ -54,7 +55,7 @@
5455
UNIT_TEST_EXTRAS: List[str] = []
5556
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}
5657

57-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.10", "3.14"]
58+
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.9", "3.14"]
5859
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
5960
"mock",
6061
"pytest",

owlbot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# Add templated files
2828
# ----------------------------------------------------------------------------
2929
templated_files = common.py_library(
30-
unit_test_python_versions=["3.10", "3.11", "3.12", "3.13", "3.14"],
31-
system_test_python_versions=["3.10", "3.14"],
30+
unit_test_python_versions=["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
31+
system_test_python_versions=["3.9", "3.14"],
3232
default_python_version="3.14",
3333
cov_level=98,
3434
intersphinx_dependencies={

0 commit comments

Comments
 (0)