Skip to content

Commit

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

* chore: fix ci

* chore: fix ci
  • Loading branch information
parthea committed Jun 7, 2022
1 parent 34a79d2 commit e044328
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Expand Up @@ -178,7 +178,7 @@ def docs(session):
"""Build the docs for this library."""

session.install("-e", ".")
session.install("sphinx", "alabaster", "recommonmark")
session.install("sphinx==4.0.1", "alabaster", "recommonmark")

shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
Expand All @@ -199,7 +199,7 @@ def docfx(session):
"""Build the docfx yaml files for this library."""

session.install("-e", ".")
session.install("sphinx", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml")
session.install("sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml")

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

0 comments on commit e044328

Please sign in to comment.