Skip to content
This repository was archived by the owner on Sep 5, 2023. It is now read-only.

Commit 2930307

Browse files
busunkim96parthea
andauthored
fix(deps): require google-api-core >= 1.31.5, >= 2.3.2 on v0 release (#154)
* chore(deps): allow google-api-core v2 on v0 release * chore: run blacken * ci: run unittest/lint/docs as gh actions * ci: fix docs build Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent 960a6bd commit 2930307

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

noxfile.py

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

140140
session.install("-e", ".")
141-
session.install("sphinx", "alabaster", "recommonmark")
141+
session.install("sphinx<3.0.0", "alabaster", "recommonmark")
142142

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

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
# 'Development Status :: 4 - Beta'
2929
# 'Development Status :: 5 - Production/Stable'
3030
release_status = "Development Status :: 3 - Alpha"
31-
dependencies = ["google-api-core[grpc] >= 1.14.0, < 2.0.0dev"]
31+
dependencies = [
32+
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0"
33+
]
3234

3335
extras = {}
3436

0 commit comments

Comments
 (0)