Skip to content

Commit c03b273

Browse files
tests(crc32c): Add Python 3.15 to unit test versions (#18077)
3.15 was missing from the nox config, leading to [unit test errors](https://github.com/googleapis/google-cloud-python/actions/runs/31527438043/job/93899188150?pr=17642): `Sessions not found: unit-3.15` This PR adds the session to nox. Note that the unit tests are skipped down-stream, but this change causes the session to trigger
1 parent 73e9a02 commit c03b273

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/google-crc32c/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
# Constants
2727
DEFAULT_PYTHON_VERSION = "3.14"
28-
UNIT_TEST_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"]
28+
UNIT_TEST_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
2929
ALL_PYTHON = list(UNIT_TEST_PYTHON_VERSIONS)
3030

3131
FLAKE8_VERSION = "flake8==6.1.0"

0 commit comments

Comments
 (0)