|
32 | 32 | ISORT_VERSION = "isort==5.11.0" |
33 | 33 | LINT_PATHS = ["docs", "bigquery_magics", "tests", "noxfile.py", "setup.py"] |
34 | 34 |
|
35 | | -DEFAULT_PYTHON_VERSION = "3.8" |
| 35 | +DEFAULT_PYTHON_VERSION = "3.10" |
36 | 36 |
|
37 | | -UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.7", "3.8", "3.9", "3.11", "3.12", "3.13"] |
| 37 | +UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.9", "3.11", "3.12", "3.13"] |
38 | 38 | UNIT_TEST_STANDARD_DEPENDENCIES = [ |
39 | 39 | "mock", |
40 | 40 | "asyncmock", |
|
49 | 49 | UNIT_TEST_DEPENDENCIES: List[str] = [] |
50 | 50 | UNIT_TEST_EXTRAS: List[str] = [] |
51 | 51 | UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = { |
52 | | - "3.7": [ |
53 | | - "bqstorage", |
54 | | - ], |
55 | | - "3.8": [ |
56 | | - "bqstorage", |
57 | | - ], |
58 | 52 | "3.9": [ |
59 | 53 | "bqstorage", |
60 | | - "bigframes", |
61 | | - "geopandas", |
62 | 54 | ], |
63 | 55 | "3.10": [ |
64 | 56 | "bqstorage", |
|
77 | 69 | ], |
78 | 70 | } |
79 | 71 |
|
80 | | -SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.8", "3.11", "3.12", "3.13"] |
| 72 | +SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.9", "3.11", "3.12", "3.13"] |
81 | 73 | SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [ |
82 | 74 | "mock", |
83 | 75 | "pytest", |
|
88 | 80 | SYSTEM_TEST_DEPENDENCIES: List[str] = [] |
89 | 81 | SYSTEM_TEST_EXTRAS: List[str] = [] |
90 | 82 | SYSTEM_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = { |
91 | | - "3.7": [ |
92 | | - "bqstorage", |
93 | | - ], |
94 | | - "3.8": [ |
95 | | - "bqstorage", |
96 | | - ], |
97 | 83 | "3.9": [ |
98 | 84 | "bqstorage", |
99 | | - "bigframes", |
100 | | - "geopandas", |
101 | 85 | ], |
102 | 86 | "3.10": [ |
103 | 87 | "bqstorage", |
@@ -495,7 +479,8 @@ def prerelease_deps(session, protobuf_implementation): |
495 | 479 | session.install( |
496 | 480 | "--pre", |
497 | 481 | "--upgrade", |
498 | | - "https://github.com/cloudspannerecosystem/spanner-graph-notebook/archive/refs/heads/main.zip", |
| 482 | + # TODO(https://github.com/googleapis/python-bigquery-magics/pull/126): Install this again when we relax the pin. |
| 483 | + # "https://github.com/cloudspannerecosystem/spanner-graph-notebook/archive/refs/heads/main.zip", |
499 | 484 | "https://github.com/googleapis/python-bigquery/archive/main.zip", |
500 | 485 | "https://github.com/googleapis/python-bigquery-storage/archive/main.zip", |
501 | 486 | ) |
|
0 commit comments