From af52b4dcbbff465ce37cef3168144cf65fede026 Mon Sep 17 00:00:00 2001 From: Daniel Sanche Date: Tue, 11 Aug 2026 12:58:52 -0700 Subject: [PATCH] tests(crc32c): Add Python 3.15 to unit test versions --- packages/google-crc32c/noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/google-crc32c/noxfile.py b/packages/google-crc32c/noxfile.py index b44c502ccd0c..2a268734c5b5 100644 --- a/packages/google-crc32c/noxfile.py +++ b/packages/google-crc32c/noxfile.py @@ -25,7 +25,7 @@ # Constants DEFAULT_PYTHON_VERSION = "3.14" -UNIT_TEST_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"] +UNIT_TEST_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"] ALL_PYTHON = list(UNIT_TEST_PYTHON_VERSIONS) FLAKE8_VERSION = "flake8==6.1.0"