We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20b4f2c commit de40094Copy full SHA for de40094
packages/google-cloud-pubsub/noxfile.py
@@ -41,6 +41,8 @@
41
DEFAULT_PYTHON_VERSION = "3.14"
42
43
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
44
+ "3.7",
45
+ "3.8",
46
"3.9",
47
"3.10",
48
"3.11",
@@ -237,6 +239,9 @@ def install_unittest_dependencies(session, *constraints):
237
239
def unit(session, protobuf_implementation):
238
240
# Install all test dependencies, then install this package in-place.
241
242
+ if session.python in ["3.7", "3.8"]:
243
+ session.skip(f"Python {session.python} is no longer supported.")
244
+
245
if protobuf_implementation == "cpp" and session.python in (
246
247
"3.12",
0 commit comments