Skip to content

Commit 8384114

Browse files
authored
Update python version and install of setuptools in lint_setup_py
1 parent 302d2da commit 8384114

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/bigquery-magics/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
DEFAULT_PYTHON_VERSION = "3.14"
3636

37-
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.8", "3.9", "3.11", "3.12", "3.13", "3.14"]
37+
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3838

3939
ALL_PYTHON = list(UNIT_TEST_PYTHON_VERSIONS)
4040
ALL_PYTHON.extend(["3.7"])
@@ -143,7 +143,7 @@ def lint(session):
143143
Returns a failure if the linters find linting errors or sufficiently
144144
serious code quality issues.
145145
"""
146-
session.install(FLAKE8_VERSION, BLACK_VERSION)
146+
session.install("setuptools", FLAKE8_VERSION, BLACK_VERSION)
147147
session.run(
148148
"black",
149149
"--check",

0 commit comments

Comments
 (0)