Skip to content

Commit e7840c1

Browse files
committed
fix(gapic-generator): remove Python 3.9 from unit tests
This removes the temporary skip for Python 3.9 in the unit test session and removes it from ALL_PYTHON, completing the drop of Python 3.9 support.
1 parent 6d68146 commit e7840c1

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/gapic-generator/noxfile.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
RUFF_EXCLUDES = "*golden*,*pb2.py,*pb2.pyi"
4545

4646
ALL_PYTHON = (
47-
"3.9",
4847
"3.10",
4948
"3.11",
5049
"3.12",
@@ -58,8 +57,7 @@
5857
@nox.session(python=ALL_PYTHON)
5958
def unit(session):
6059
"""Run the unit test suite."""
61-
if session.python == "3.9":
62-
session.skip("Skipping Python 3.9 unit tests temporarily.")
60+
6361
session.install(
6462
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2478):
6563
# Temporarily pin coverage to 7.11.0

0 commit comments

Comments
 (0)