|
30 | 30 | DEFAULT_PYTHON_VERSION = "3.8" |
31 | 31 |
|
32 | 32 | # We're using two Python versions to test with sqlalchemy 1.3 and 1.4. |
33 | | -SYSTEM_TEST_PYTHON_VERSIONS = ["3.8", "3.9"] |
34 | | -UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9"] |
| 33 | +SYSTEM_TEST_PYTHON_VERSIONS = ["3.8", "3.10"] |
| 34 | +UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10"] |
35 | 35 |
|
36 | 36 | CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute() |
37 | 37 |
|
@@ -100,7 +100,7 @@ def default(session): |
100 | 100 |
|
101 | 101 | if session.python == "3.8": |
102 | 102 | extras = "[tests,alembic]" |
103 | | - elif session.python == "3.9": |
| 103 | + elif session.python == "3.10": |
104 | 104 | extras = "[tests,geography]" |
105 | 105 | else: |
106 | 106 | extras = "[tests]" |
@@ -158,7 +158,7 @@ def system(session): |
158 | 158 | session.install("mock", "pytest", "google-cloud-testutils", "-c", constraints_path) |
159 | 159 | if session.python == "3.8": |
160 | 160 | extras = "[tests,alembic]" |
161 | | - elif session.python == "3.9": |
| 161 | + elif session.python == "3.10": |
162 | 162 | extras = "[tests,geography]" |
163 | 163 | else: |
164 | 164 | extras = "[tests]" |
|
0 commit comments