Skip to content

Commit 3dbeb72

Browse files
authored
fix(deps): require protobuf<4.0.0 on v1 branch (#1271)
* fix(deps): require protobuf<4.0.0 on v1 branch * chore: fix ci
1 parent 7b0dfa2 commit 3dbeb72

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def blacken(session):
206206
def docs(session):
207207
"""Build the docs."""
208208

209-
session.install("ipython", "recommonmark", "sphinx<3.0.0", "sphinx_rtd_theme")
209+
session.install("ipython", "recommonmark", "sphinx<3.0.0", "jinja2<3.1", "sphinx_rtd_theme")
210210
session.install("google-cloud-storage")
211211
session.install("-e", ".[all]")
212212

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"google-cloud-core >= 1.4.1, < 3.0dev",
3535
"google-resumable-media >= 0.6.0, < 2.0dev",
3636
"six >=1.13.0,< 2.0.0dev",
37+
"protobuf<4.0.0dev",
3738
]
3839
extras = {
3940
"bqstorage": [

0 commit comments

Comments
 (0)