Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

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

* chore: fix ci
  • Loading branch information
parthea committed Jun 7, 2022
1 parent f6a1774 commit d7eee51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,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
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
include_package_data=True,
install_requires=(
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
"proto-plus >= 1.4.0",
"proto-plus >= 1.4.0, <2.0.0dev",
"protobuf<4.0.0dev",
),
python_requires=">=3.6",
setup_requires=["libcst >= 0.2.5"],
Expand Down

0 comments on commit d7eee51

Please sign in to comment.