Skip to content

Commit 21678fb

Browse files
partheacopybara-github
authored andcommitted
tests: add testing for Python 3.15 (#17962)
Python 3.15 testing was skipped in a subset of packages. The follow up work is tracked in googleapis/google-cloud-python#17741 GitOrigin-RevId: 89cfe8573ddf99c0fc9ef1c98615d1769e561e4e Change-Id: If5e17f4979e99f9f837ff86b04816ce87ad1fc7c
1 parent 0312a55 commit 21678fb

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

noxfile.py

Lines changed: 5 additions & 1 deletion
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"]
63+
ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
6464
UNIT_TEST_STANDARD_DEPENDENCIES = [
6565
"mock",
6666
PYTEST_VERSION,
@@ -283,6 +283,10 @@ 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+
)
286290
if test_extra:
287291
run_unit(session, install_test_extra=test_extra)
288292
else:

0 commit comments

Comments
 (0)