Skip to content

Commit ce8f57c

Browse files
committed
fix syntax
1 parent da6e720 commit ce8f57c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def fragment(session, use_ads_templates=False):
175175

176176
# The specific failure is `Plugin output is unparseable`
177177
if session.python in ("3.9", "3.10"):
178-
session.install("google-api-core=2.11.0")
178+
session.install("google-api-core==2.11.0")
179179

180180
frag_files = (
181181
[Path(f) for f in session.posargs] if session.posargs else FRAGMENT_FILES
@@ -245,7 +245,7 @@ def showcase_library(
245245
# appear to cause issues when running protoc.
246246
# The specific failure is `Plugin output is unparseable`
247247
if session.python in ("3.9", "3.10"):
248-
session.install("google-api-core=2.11.0")
248+
session.install("google-api-core==2.11.0")
249249

250250
# Install a client library for Showcase.
251251
with tempfile.TemporaryDirectory() as tmp_dir:

0 commit comments

Comments
 (0)