|
36 | 36 | )
|
37 | 37 |
|
38 | 38 | DEFAULT_PYTHON_VERSION = "3.8"
|
39 |
| -SYSTEM_TEST_PYTHON_VERSIONS = ["3.8", "3.10"] |
| 39 | +SYSTEM_TEST_PYTHON_VERSIONS = ["3.8", "3.11"] |
40 | 40 | UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
41 | 41 | CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
|
42 | 42 |
|
@@ -80,7 +80,7 @@ def default(session, install_extras=True):
|
80 | 80 | constraints_path,
|
81 | 81 | )
|
82 | 82 |
|
83 |
| - if install_extras and session.python == "3.10": |
| 83 | + if install_extras and session.python == "3.11": |
84 | 84 | install_target = ".[bqstorage,ipywidgets,pandas,tqdm,opentelemetry]"
|
85 | 85 | elif install_extras:
|
86 | 86 | install_target = ".[all]"
|
@@ -185,7 +185,7 @@ def system(session):
|
185 | 185 | # Data Catalog needed for the column ACL test with a real Policy Tag.
|
186 | 186 | session.install("google-cloud-datacatalog", "-c", constraints_path)
|
187 | 187 |
|
188 |
| - if session.python == "3.10": |
| 188 | + if session.python == "3.11": |
189 | 189 | extras = "[bqstorage,ipywidgets,pandas,tqdm,opentelemetry]"
|
190 | 190 | else:
|
191 | 191 | extras = "[all]"
|
@@ -244,7 +244,7 @@ def snippets(session):
|
244 | 244 | session.install("google-cloud-storage", "-c", constraints_path)
|
245 | 245 | session.install("grpcio", "-c", constraints_path)
|
246 | 246 |
|
247 |
| - if session.python == "3.10": |
| 247 | + if session.python == "3.11": |
248 | 248 | extras = "[bqstorage,ipywidgets,pandas,tqdm,opentelemetry]"
|
249 | 249 | else:
|
250 | 250 | extras = "[all]"
|
|
0 commit comments