Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit a44f62f

Browse files
committed
fix: add cyrptography package to prerelease tests
1 parent d20dd28 commit a44f62f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

gapic/templates/noxfile.py.j2

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,7 @@ def prerelease_deps(session, protobuf_implementation):
502502
"grpcio-status",
503503
"protobuf",
504504
"proto-plus",
505+
"cryptography", # required by google-auth v3.x
505506
]
506507

507508
for dep in prerel_deps:
@@ -602,6 +603,9 @@ def core_deps_from_source(session, protobuf_implementation):
602603
session.install(dep, "--no-deps", "--ignore-installed")
603604
print(f"Installed {dep}")
604605

606+
# Required by google-auth v3.x
607+
session.install(cryptography)
608+
605609
session.run(
606610
"py.test",
607611
"tests/unit",

0 commit comments

Comments
 (0)