|
60 | 60 |
|
61 | 61 | DEFAULT_PYTHON_VERSION = "3.14" |
62 | 62 |
|
63 | | -ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"] |
| 63 | +ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14"] |
64 | 64 | UNIT_TEST_STANDARD_DEPENDENCIES = [ |
65 | 65 | "mock", |
66 | 66 | PYTEST_VERSION, |
@@ -250,8 +250,6 @@ def install_unittest_dependencies(session, install_test_extra, *constraints): |
250 | 250 |
|
251 | 251 | def run_unit(session, install_test_extra): |
252 | 252 | """Run the unit test suite.""" |
253 | | - if session.python == "3.15": |
254 | | - session.skip("Wait until pyproj has 3.15 wheels") |
255 | 253 | constraints_path = str( |
256 | 254 | CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
257 | 255 | ) |
@@ -291,7 +289,7 @@ def unit(session, test_extra): |
291 | 289 | unit_noextras(session) |
292 | 290 |
|
293 | 291 |
|
294 | | -@nox.session(python=DEFAULT_PYTHON_VERSION) |
| 292 | +@nox.session(python=ALL_PYTHON[-1]) |
295 | 293 | def unit_noextras(session): |
296 | 294 | run_unit(session, install_test_extra=False) |
297 | 295 |
|
@@ -658,7 +656,7 @@ def prerelease(session: nox.sessions.Session, tests_path, extra_pytest_options=( |
658 | 656 | ) |
659 | 657 |
|
660 | 658 |
|
661 | | -@nox.session(python=DEFAULT_PYTHON_VERSION) |
| 659 | +@nox.session(python=ALL_PYTHON[-1]) |
662 | 660 | def unit_prerelease(session: nox.sessions.Session): |
663 | 661 | """Run the unit test suite with prerelease dependencies.""" |
664 | 662 | prerelease(session, os.path.join("tests", "unit")) |
@@ -1042,7 +1040,7 @@ def core_deps_from_source(session, protobuf_implementation): |
1042 | 1040 | ) |
1043 | 1041 |
|
1044 | 1042 |
|
1045 | | -@nox.session(python=DEFAULT_PYTHON_VERSION) |
| 1043 | +@nox.session(python=ALL_PYTHON[-1]) |
1046 | 1044 | def prerelease_deps(session): |
1047 | 1045 | """Run all tests with prerelease versions of dependencies installed.""" |
1048 | 1046 | # TODO(https://github.com/googleapis/google-cloud-python/issues/16014): |
|
0 commit comments