Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit 507b44c

Browse files
busunkim96parthea
andauthored
fix(deps): require google-api-core >= 1.31.5, >= 2.3.2 on v1 release (#237)
* chore(deps): allow google-api-core v2 on v1 release * ci: fix docs build Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent 3a9290c commit 507b44c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def docs(session):
139139
"""Build the docs for this library."""
140140

141141
session.install("-e", ".")
142-
session.install("sphinx", "alabaster", "recommonmark")
142+
session.install("sphinx<3.0.0", "alabaster", "recommonmark")
143143

144144
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
145145
session.run(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
version = "1.5.0"
2525
release_status = "Development Status :: 5 - Production/Stable"
2626
dependencies = [
27-
"google-api-core[grpc] >= 1.14.0, < 2.0.0dev",
27+
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
2828
"grpc-google-iam-v1 >= 0.12.3, < 0.13dev",
2929
'enum34; python_version < "3.4"',
3030
]

0 commit comments

Comments
 (0)