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 @@ -118,8 +118,10 @@ def unit(session):
118118 """Run the unit test suite."""
119119 if session .python in ("3.7" ,):
120120 session .skip ("Python 3.7 is no longer supported" )
121- print ("Unit tests with django 3.2" )
122- default (session )
121+ # Django 3.2 is End-Of-Life and fundamentally incompatible with Python 3.13+
122+ if session .python not in ("3.13" , "3.14" ):
123+ print ("Unit tests with django 3.2" )
124+ default (session )
123125 print ("Unit tests with django 4.2" )
124126 default (session , django_version = "4.2" )
125127
@@ -200,8 +202,9 @@ def system_test(session, django_version="3.2"):
200202
201203@nox .session (python = SYSTEM_TEST_PYTHON_VERSIONS )
202204def system (session ):
203- print ("System tests with django 3.2" )
204- system_test (session )
205+ if session .python not in ("3.13" , "3.14" ):
206+ print ("System tests with django 3.2" )
207+ system_test (session )
205208 print ("System tests with django 4.2" )
206209 system_test (session , django_version = "4.2" )
207210
You can’t perform that action at this time.
0 commit comments