Skip to content

Commit 920be87

Browse files
committed
test: add 3.9 back in cause CI/CD pipeline expects it, even if we skip it
1 parent be47e99 commit 920be87

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/bigframes/noxfile.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
DEFAULT_PYTHON_VERSION = "3.14"
5757

58-
ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14"]
58+
ALL_PYTHON = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
5959
UNIT_TEST_STANDARD_DEPENDENCIES = [
6060
"mock",
6161
PYTEST_VERSION,
@@ -369,6 +369,8 @@ def run_system(
369369
@nox.parametrize("test_extra", [True, False])
370370
def system(session: nox.sessions.Session, test_extra):
371371
"""Run the system test suite."""
372+
if session.python in ("3.7", "3.8", "3.9"):
373+
session.skip("Python 3.9 and below are not supported")
372374
if test_extra:
373375
run_system(
374376
session=session,
@@ -958,7 +960,7 @@ def core_deps_from_source(session, protobuf_implementation):
958960
# version, the first version we test with in the unit tests sessions has a
959961
# constraints file containing all dependencies and extras.
960962
with open(
961-
CURRENT_DIRECTORY / "testing" / f"constraints-{ALL_PYTHON[0]}.txt",
963+
CURRENT_DIRECTORY / "testing" / "constraints-3.10.txt",
962964
encoding="utf-8",
963965
) as constraints_file:
964966
constraints_text = constraints_file.read()

0 commit comments

Comments
 (0)