Skip to content

Commit e34b439

Browse files
committed
revert
1 parent 882bec9 commit e34b439

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

packages/sqlalchemy-bigquery/noxfile.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,12 @@ def unit(session, protobuf_implementation, install_extras=True):
274274
# Install all test dependencies, then install this package in-place.
275275

276276
# Install all test dependencies, then install this package in-place.
277-
py_version = tuple([int(v) for v in session.python.split(".")])
278-
if protobuf_implementation == "cpp" and py_version >= (3, 11):
279-
session.skip("cpp implementation is not supported in python 3.11+")
277+
if protobuf_implementation == "cpp" and session.python in (
278+
"3.11",
279+
"3.12",
280+
"3.13",
281+
"3.14",
282+
):
280283

281284
constraints_path = str(
282285
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"

0 commit comments

Comments
 (0)