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

Commit 4997699

Browse files
committed
restore testing for Python 3.7
1 parent f510cd3 commit 4997699

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
14+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4

noxfile.py

Lines changed: 1 addition & 0 deletions
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.7",
3839
"3.8",
3940
"3.9",
4041
"3.10",

owlbot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def get_staging_dirs(
9191
unit_test_external_dependencies=["six"],
9292
system_test_external_dependencies=["six"],
9393
cov_level=100,
94-
unit_test_python_versions=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
94+
unit_test_python_versions=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
9595
default_python_version="3.14",
9696
system_test_python_versions=["3.14"],
9797
)

0 commit comments

Comments
 (0)