Skip to content

Commit aa1c108

Browse files
committed
try removing package installs from noxfile
1 parent ca7704d commit aa1c108

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

noxfile.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ def unit(session):
6060
"pyfakefs",
6161
"grpcio-status",
6262
"proto-plus",
63-
"setuptools", # TODO: Remove when not needed in __init__.py.j2
64-
"packaging", # TODO: Remove when not needed in __init__.py.j2
63+
# "setuptools", # TODO: Remove when not needed in __init__.py.j2
64+
# "packaging", # TODO: Remove when not needed in __init__.py.j2
6565
)
6666
session.install("-e", ".")
6767
session.run(
@@ -483,8 +483,8 @@ def run_showcase_unit_tests(session, fail_under=100, rest_async_io_enabled=False
483483
"pytest-xdist",
484484
"asyncmock; python_version < '3.8'",
485485
"pytest-asyncio",
486-
"setuptools", # TODO: Remove when not needed in __init__.py.j2
487-
"packaging", # TODO: Remove when not needed in __init__.py.j2
486+
# "setuptools", # TODO: Remove when not needed in __init__.py.j2
487+
# "packaging", # TODO: Remove when not needed in __init__.py.j2
488488
)
489489
# Run the tests.
490490
# NOTE: async rest is not supported against the minimum supported version of google-api-core.
@@ -599,8 +599,8 @@ def showcase_mypy(
599599
"types-protobuf",
600600
"types-requests",
601601
"types-dataclasses",
602-
"setuptools", # TODO: Remove when not needed in __init__.py.j2
603-
"packaging", # TODO: Remove when not needed in __init__.py.j2
602+
# "setuptools", # TODO: Remove when not needed in __init__.py.j2
603+
# "packaging", # TODO: Remove when not needed in __init__.py.j2
604604
)
605605

606606
with showcase_library(session, templates=templates, other_opts=other_opts) as lib:
@@ -731,8 +731,8 @@ def mypy(session):
731731
"types-PyYAML",
732732
"types-dataclasses",
733733
"click==8.1.3",
734-
"setuptools", # TODO: Remove when not needed in __init__.py.j2
735-
"packaging", # TODO: Remove when not needed in __init__.py.j2
734+
# "setuptools", # TODO: Remove when not needed in __init__.py.j2
735+
# "packaging", # TODO: Remove when not needed in __init__.py.j2
736736
)
737737
session.install(".")
738738
session.run("mypy", "-p", "gapic")

0 commit comments

Comments
 (0)