Skip to content

Commit

Permalink
fix(deps): require protobuf<4.0.0 on v1 branch (#714)
Browse files Browse the repository at this point in the history
* fix(deps): require protobuf<4.0.0 on v1 branch

* chore: fix ci
  • Loading branch information
parthea committed Jun 8, 2022
1 parent f140c20 commit 91d7e70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def docs(session):
"""Build the docs for this library."""

session.install("-e", ".")
session.install("sphinx", "alabaster", "recommonmark")
session.install("sphinx<3.0.0", "jinja2<3.1", "alabaster", "recommonmark")

shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
"grpc-google-iam-v1 >= 0.12.3, < 0.13dev",
'enum34; python_version < "3.4"',
"protobuf<4.0.0dev",
]
extras = {}

Expand Down

0 comments on commit 91d7e70

Please sign in to comment.