Skip to content

Commit 00bacfc

Browse files
committed
fix nox -s prerelease_deps by adding dependencies to noxfile
1 parent e7d5849 commit 00bacfc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

noxfile.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ def install_prerelease_dependencies(session, constraints_path):
9191
r"^\s*(\S+)(?===\S+)", constraints_text, flags=re.MULTILINE
9292
)
9393
]
94-
session.install(*constraints_deps)
94+
if constraints_deps:
95+
session.install(*constraints_deps)
96+
9597
prerel_deps = [
9698
"google-auth",
9799
"googleapis-common-protos",
@@ -107,6 +109,9 @@ def install_prerelease_dependencies(session, constraints_path):
107109
# Remaining dependencies
108110
other_deps = [
109111
"requests",
112+
"pyasn1",
113+
"cryptography",
114+
"cachetools",
110115
]
111116
session.install(*other_deps)
112117

0 commit comments

Comments
 (0)