Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 91d7e70

Browse files
authored
fix(deps): require protobuf<4.0.0 on v1 branch (#714)
* fix(deps): require protobuf<4.0.0 on v1 branch * chore: fix ci
1 parent f140c20 commit 91d7e70

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

noxfile.py

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

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

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

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
3636
"grpc-google-iam-v1 >= 0.12.3, < 0.13dev",
3737
'enum34; python_version < "3.4"',
38+
"protobuf<4.0.0dev",
3839
]
3940
extras = {}
4041

0 commit comments

Comments
 (0)