Skip to content

Commit 7ad363e

Browse files
committed
chore(django-google-spanner): update Python version in noxfile.py to 3.10
1 parent bd82d0d commit 7ad363e

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

packages/django-google-spanner/noxfile.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,13 @@
2828
DEFAULT_PYTHON_VERSION = "3.14"
2929

3030
UNIT_TEST_PYTHON_VERSIONS = [
31-
"3.8",
32-
"3.9",
3331
"3.10",
3432
"3.11",
3533
"3.12",
3634
"3.13",
3735
"3.14",
3836
]
3937
ALL_PYTHON = list(UNIT_TEST_PYTHON_VERSIONS)
40-
ALL_PYTHON.extend(["3.7"])
4138

4239
SYSTEM_TEST_PYTHON_VERSIONS = ALL_PYTHON
4340

@@ -125,8 +122,6 @@ def default(session, django_version="3.2"):
125122
@nox.session(python=ALL_PYTHON)
126123
def unit(session):
127124
"""Run the unit test suite."""
128-
if session.python in ("3.7",):
129-
session.skip("Python 3.7 is no longer supported")
130125
# TODO: Remove this check once support for Python 3.14 is added to Protobuf.
131126
if session.python == "3.14":
132127
session.skip("Protobuf upb implementation is not supported in Python 3.14 yet")
@@ -217,8 +212,6 @@ def system(session):
217212
# See: https://github.com/googleapis/python-spanner-django/pull/929.
218213
session.skip("System tests are temporarily disabled.")
219214

220-
if session.python == "3.7":
221-
session.skip("Python 3.7 is no longer supported")
222215
print("System tests with django 3.2")
223216
system_test(session)
224217
print("System tests with django 4.2")

0 commit comments

Comments
 (0)