Skip to content

Commit 3904581

Browse files
committed
Relax dependencies restriction for the gRPC libraries
Signed-off-by: Yuki Iwai <[email protected]>
1 parent d2d9cab commit 3904581

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
grpcio==1.41.1
2-
protobuf==3.19.5
1+
grpcio>=1.41.1
2+
protobuf>=3.19.5, <=3.20.3
33
googleapis-common-protos==1.6.0
44
kubernetes==22.6.0
55
cython>=0.29.24
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
psutil==5.9.4
22
rfc3339>=6.2
3-
grpcio==1.41.1
3+
grpcio>=1.41.1
44
googleapis-common-protos==1.6.0
55
tensorflow==2.11.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
grpcio==1.41.1
1+
grpcio>=1.41.1
22
cloudpickle==0.5.6
33
numpy>=1.20.0
44
scikit-learn>=0.24.0
55
scipy>=1.5.4
66
forestci==0.3
7-
protobuf==3.19.5
7+
protobuf>=3.19.5, <=3.20.3
88
googleapis-common-protos==1.6.0
99
cython>=0.29.24
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
grpcio==1.41.1
1+
grpcio>=1.41.1
22
cloudpickle==0.5.6
33
numpy>=1.20.0
44
scikit-learn>=0.24.0
55
scipy>=1.5.4
66
forestci==0.3
7-
protobuf==3.19.5
7+
protobuf>=3.19.5, <=3.20.3
88
googleapis-common-protos==1.6.0
99
hyperopt==0.2.5
1010
cython>=0.29.24
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.41.1
2-
protobuf==3.19.5
1+
grpcio>=1.41.1
2+
protobuf>=3.19.5, <=3.20.3
33
googleapis-common-protos==1.6.0
44
cython>=0.29.24
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.41.1
1+
grpcio>=1.41.1
22
googleapis-common-protos==1.6.0
33
cython>=0.29.24
44
tensorflow==2.11.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.41.1
2-
protobuf==3.19.5
1+
grpcio>=1.41.1
2+
protobuf>=3.19.5, <=3.20.3
33
googleapis-common-protos==1.53.0
44
optuna>=3.0.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.41.1
2-
protobuf==3.19.5
1+
grpcio>=1.41.1
2+
protobuf>=3.19.5, <=3.20.3
33
googleapis-common-protos==1.53.0
44
numpy==1.22.2
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grpcio==1.41.1
1+
grpcio>=1.41.1
22
cloudpickle==0.5.6
33
# This is a workaround to avoid the following error.
44
# AttributeError: module 'numpy' has no attribute 'int'
@@ -7,7 +7,7 @@ numpy==1.23.5
77
scikit-learn>=0.24.0
88
scipy>=1.5.4
99
forestci==0.3
10-
protobuf==3.19.5
10+
protobuf>=3.19.5, <=3.20.3
1111
googleapis-common-protos==1.6.0
1212
scikit-optimize>=0.9.0
1313
cython>=0.29.24

sdk/python/v1beta1/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"setuptools>=21.0.0",
2323
"urllib3>=1.15.1",
2424
"kubernetes>=23.6.0",
25-
"grpcio==1.41.1",
26-
"protobuf==3.19.5",
25+
"grpcio>=1.41.1",
26+
"protobuf>=3.19.5, <=3.20.3",
2727
]
2828

2929
katib_grpc_api_file = "../../../pkg/apis/manager/v1beta1/python/api_pb2.py"

0 commit comments

Comments
 (0)