Skip to content

Commit 0450b6b

Browse files
committed
test: adds re (regex) import to support core_deps_from_source nox session
1 parent bafff39 commit 0450b6b

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
@@ -20,6 +20,7 @@
2020
import multiprocessing
2121
import os
2222
import pathlib
23+
import re
2324
import shutil
2425
import time
2526
from typing import Dict, List
@@ -54,7 +55,7 @@
5455

5556
DEFAULT_PYTHON_VERSION = "3.14"
5657

57-
ALL_PYTHON = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
58+
ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14"]
5859
UNIT_TEST_STANDARD_DEPENDENCIES = [
5960
"mock",
6061
PYTEST_VERSION,
@@ -94,11 +95,12 @@
9495
SYSTEM_TEST_EXTERNAL_DEPENDENCIES = [
9596
"google-cloud-bigquery",
9697
]
97-
SYSTEM_TEST_EXTRAS: List[str] = ["tests"]
98+
SYSTEM_TEST_EXTRAS: List[str] = []
9899
SYSTEM_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {
99100
# Make sure we leave some versions without "extras" so we know those
100101
# dependencies are actually optional.
101102
"3.10": ["tests", "scikit-learn", "anywidget"],
103+
"3.11": ["tests"],
102104
"3.12": ["tests", "scikit-learn", "polars", "anywidget"],
103105
"3.13": ["tests", "polars", "anywidget"],
104106
"3.14": ["tests", "polars", "anywidget"],

0 commit comments

Comments
 (0)