Skip to content

Commit deb9e00

Browse files
committed
ci: remove Python 3.15 from ALL_PYTHON in noxfile
Dependencies (including pyproj and pyarrow) do not yet support Python 3.15, causing prerelease and unit test installation failures in Kokoro. Removes 3.15 from ALL_PYTHON to unblock presubmit builds. Change-Id: Ice281a12db448a01bc621bc14a5447873773ebb2
1 parent 7751809 commit deb9e00

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

noxfile.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
DEFAULT_PYTHON_VERSION = "3.14"
6262

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"]
6464
UNIT_TEST_STANDARD_DEPENDENCIES = [
6565
"mock",
6666
PYTEST_VERSION,
@@ -283,10 +283,6 @@ def run_unit(session, install_test_extra):
283283
@nox.session(python=ALL_PYTHON)
284284
@nox.parametrize("test_extra", [True, False])
285285
def unit(session, test_extra):
286-
if session.python == "3.15":
287-
session.skip(
288-
"Skipping 3.15 until wheels are available for pyarrow. Also pyproj wheels are needed for dependency geopandas."
289-
)
290286
if test_extra:
291287
run_unit(session, install_test_extra=test_extra)
292288
else:

0 commit comments

Comments
 (0)