File tree Expand file tree Collapse file tree
packages/django-google-spanner Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828DEFAULT_PYTHON_VERSION = "3.14"
2929
3030UNIT_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]
3937ALL_PYTHON = list (UNIT_TEST_PYTHON_VERSIONS )
40- ALL_PYTHON .extend (["3.7" ])
4138
4239SYSTEM_TEST_PYTHON_VERSIONS = ALL_PYTHON
4340
@@ -125,8 +122,6 @@ def default(session, django_version="3.2"):
125122@nox .session (python = ALL_PYTHON )
126123def 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" )
You can’t perform that action at this time.
0 commit comments