Skip to content

Commit 9f72e53

Browse files
committed
chore: update lowest python runtime to avoid missing constr.txt file error
1 parent eda5376 commit 9f72e53

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

packages/google-cloud-spanner/noxfile.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,14 @@
3939
DEFAULT_MOCK_SERVER_TESTS_PYTHON_VERSION = "3.12"
4040
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.12"]
4141

42-
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
43-
"3.8",
42+
ALL_PYTHON: List[str] = [
4443
"3.9",
4544
"3.10",
4645
"3.11",
4746
"3.12",
4847
"3.13",
4948
"3.14",
5049
]
51-
52-
ALL_PYTHON = list(UNIT_TEST_PYTHON_VERSIONS)
53-
ALL_PYTHON.extend(["3.7"])
5450
UNIT_TEST_STANDARD_DEPENDENCIES = [
5551
"mock",
5652
"asyncmock",
@@ -603,7 +599,7 @@ def prerelease_deps(session, protobuf_implementation, database_dialect):
603599
with open(
604600
CURRENT_DIRECTORY
605601
/ "testing"
606-
/ f"constraints-{UNIT_TEST_PYTHON_VERSIONS[0]}.txt",
602+
/ f"constraints-{ALL_PYTHON[0]}.txt",
607603
encoding="utf-8",
608604
) as constraints_file:
609605
constraints_text = constraints_file.read()

0 commit comments

Comments
 (0)