Skip to content

Commit a1b5d7e

Browse files
authored
[Core][Protobuf] loose upper bound for protobuf (#29224) (#29409)
This upper bound was introduced in #25211 but the root cause is supposed be fixed by #25648.
1 parent 3ff1ccf commit a1b5d7e

5 files changed

+5
-5
lines changed

ci/env/install-core-prerelease-dependencies.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
# install all unbounded dependencies in setup.py for ray core
6-
for dependency in attrs jsonschema aiosignal frozenlist requests grpcio
6+
for dependency in attrs jsonschema aiosignal frozenlist requests grpcio protobuf
77
do
88
python -m pip install -U --pre --upgrade-strategy=eager $dependency
99
done

python/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ numpy >= 1.16
2020
opencensus
2121
packaging; python_version >= '3.10'
2222
prometheus_client >= 0.7.1, < 0.14.0
23-
protobuf >= 3.15.3, != 3.19.5, < 4.0.0
23+
protobuf >= 3.15.3, != 3.19.5
2424
py-spy >= 0.2.0
2525
pydantic >= 1.8, < 1.10.0
2626
pyyaml

python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def get_packages(self):
309309
"numpy >= 1.16; python_version < '3.9'",
310310
"numpy >= 1.19.3; python_version >= '3.9'",
311311
"packaging; python_version >= '3.10'",
312-
"protobuf >= 3.15.3, < 4.0.0",
312+
"protobuf >= 3.15.3, != 3.19.5",
313313
"pyyaml",
314314
"aiosignal",
315315
"frozenlist",

release/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ toml
1111
python-dotenv
1212
expiringdict
1313
requests
14-
protobuf >= 3.15.3, != 3.19.5, < 4.0.0
14+
protobuf >= 3.15.3, != 3.19.5
1515
pytz
1616
retry
1717
git+https://github.com/ray-project/xgboost_ray.git#egg=xgboost_ray

release/requirements_buildkite.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ anyscale
22
click
33
boto3
44
jinja2
5-
protobuf >= 3.15.3, != 3.19.5, < 4.0.0
5+
protobuf >= 3.15.3, != 3.19.5
66
pydantic < 1.10.0
77
pyyaml
88
requests

0 commit comments

Comments
 (0)