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

Commit

Permalink
fix(deps): allow protobuf < 5.0.0 (#206)
Browse files Browse the repository at this point in the history
fix(deps): require proto-plus >= 1.22.0
  • Loading branch information
parthea committed Aug 11, 2022
1 parent d69e652 commit 012a6e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -47,8 +47,8 @@
include_package_data=True,
install_requires=(
"google-api-core[grpc] >= 1.32.0, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*",
"proto-plus >= 1.15.0, <2.0.0dev",
"protobuf >= 3.19.0, <4.0.0dev",
"proto-plus >= 1.22.0, <2.0.0dev",
"protobuf >= 3.19.0, <5.0.0dev",
),
python_requires=">=3.7",
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion testing/constraints-3.7.txt
Expand Up @@ -6,5 +6,5 @@
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
# Then this file should have foo==1.14.0
google-api-core==1.32.0
proto-plus==1.15.0
proto-plus==1.22.0
protobuf==3.19.0

0 comments on commit 012a6e1

Please sign in to comment.