Skip to content

Commit 3d3e0aa

Browse files
authored
fix(deps): allow protobuf < 5.0.0 (#1587)
fix(deps): require proto-plus >= 1.22.0
1 parent 0385c4c commit 3d3e0aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"attrs==21.4.0",
6464
"absl-py>=0.7",
6565
"numpy>=1.19.0",
66-
"protobuf>=3.6,<4.0",
66+
"protobuf>=3.6,<5.0",
6767
"keras-tuner>=1.0,<2.0",
6868
"portpicker==1.3.1",
6969
"googleapis-common-protos==1.56.0",
@@ -128,8 +128,8 @@
128128
include_package_data=True,
129129
install_requires=(
130130
"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.*",
131-
"proto-plus >= 1.15.0, <2.0.0dev",
132-
"protobuf >= 3.19.0, <4.0.0dev",
131+
"proto-plus >= 1.22.0, <2.0.0dev",
132+
"protobuf >= 3.19.0, <5.0.0dev",
133133
"packaging >= 14.3, <22.0.0dev",
134134
"google-cloud-storage >= 1.32.0, < 3.0.0dev",
135135
"google-cloud-bigquery >= 1.15.0, < 3.0.0dev",

testing/constraints-3.7.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Then this file should have foo==1.14.0
88
google-api-core==1.32.0
99
libcst==0.2.5
10-
proto-plus==1.15.0
10+
proto-plus==1.22.0
1111
protobuf==3.19.0
1212
mock==4.0.2
1313
google-cloud-storage==1.32.0

0 commit comments

Comments
 (0)