Skip to content

Commit 36c11a3

Browse files
committed
Add 3.15 to noxfile.py
1 parent 5b19b8e commit 36c11a3

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.librarian/generator-input/client-post-processing/bigtable-integration.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ replacements:
385385
"3.12",
386386
"3.13",
387387
"3.14",
388+
"3.15",
388389
]
389390
390391
UNIT_TEST_STANDARD_DEPENDENCIES = [
@@ -573,6 +574,11 @@ replacements:
573574
def unit(session, protobuf_implementation):
574575
# Install all test dependencies, then install this package in-place.
575576
577+
# TODO(https://github.com/googleapis/google-cloud-python/issues/17741):
578+
# Remove once `google-crc32c` wheels are published for 3.15
579+
if session.python == "3.15":
580+
session.skip("Skipping 3.15 until wheels are available for google-crc32c.")
581+
576582
constraints_path = str(
577583
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
578584
)

packages/google-cloud-bigtable/noxfile.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"3.12",
3434
"3.13",
3535
"3.14",
36+
"3.15",
3637
]
3738

3839
UNIT_TEST_STANDARD_DEPENDENCIES = [
@@ -221,6 +222,11 @@ def install_unittest_dependencies(session, *constraints):
221222
def unit(session, protobuf_implementation):
222223
# Install all test dependencies, then install this package in-place.
223224

225+
# TODO(https://github.com/googleapis/google-cloud-python/issues/17741):
226+
# Remove once `google-crc32c` wheels are published for 3.15
227+
if session.python == "3.15":
228+
session.skip("Skipping 3.15 until wheels are available for google-crc32c.")
229+
224230
constraints_path = str(
225231
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
226232
)

0 commit comments

Comments
 (0)