Skip to content

Commit 113325d

Browse files
committed
1 parent a08c4bb commit 113325d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/google-api-core/noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
import nox # pytype: disable=import-error
2424

2525

26-
BLACK_VERSION = "black==22.3.0"
26+
BLACK_VERSION = "black==23.7.0"
2727
BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
2828
# Black and flake8 clash on the syntax for ignoring flake8's F401 in this file.
2929
BLACK_EXCLUDES = ["--exclude", "^/google/api_core/operations_v1/__init__.py"]
3030

3131
PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3232

33-
DEFAULT_PYTHON_VERSION = "3.10"
33+
DEFAULT_PYTHON_VERSION = "3.14"
3434
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
3535

3636
# 'docfx' is excluded since it only needs to run in 'docs-presubmit'
@@ -261,7 +261,7 @@ def unit_w_async_rest_extra(session):
261261
def lint_setup_py(session):
262262
"""Verify that setup.py is valid (including RST check)."""
263263

264-
session.install("docutils", "Pygments")
264+
session.install("docutils", "Pygments", "setuptools")
265265
session.run("python", "setup.py", "check", "--restructuredtext", "--strict")
266266

267267

0 commit comments

Comments
 (0)