Skip to content

Commit

Permalink
[Core][Protobuf] loose upper bound for protobuf (#29224)
Browse files Browse the repository at this point in the history
This upper bound was introduced in #25211 but the root cause is supposed be fixed by #25648.
  • Loading branch information
scv119 authored Oct 17, 2022
1 parent a52155a commit 37c2b58
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/env/install-core-prerelease-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

# install all unbounded dependencies in setup.py for ray core
for dependency in attrs jsonschema aiosignal frozenlist requests grpcio
for dependency in attrs jsonschema aiosignal frozenlist requests grpcio protobuf
do
python -m pip install -U --pre --upgrade-strategy=eager $dependency
done
2 changes: 1 addition & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ numpy >= 1.16
opencensus
packaging; python_version >= '3.10'
prometheus_client >= 0.7.1, < 0.14.0
protobuf >= 3.15.3, != 3.19.5, < 4.0.0
protobuf >= 3.15.3, != 3.19.5
py-spy >= 0.2.0
pydantic >= 1.8, < 1.10.0
pyyaml
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def get_packages(self):
"numpy >= 1.16; python_version < '3.9'",
"numpy >= 1.19.3; python_version >= '3.9'",
"packaging; python_version >= '3.10'",
"protobuf >= 3.15.3, < 4.0.0",
"protobuf >= 3.15.3, != 3.19.5",
"pyyaml",
"aiosignal",
"frozenlist",
Expand Down
2 changes: 1 addition & 1 deletion release/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ toml
python-dotenv
expiringdict
requests
protobuf >= 3.15.3, != 3.19.5, < 4.0.0
protobuf >= 3.15.3, != 3.19.5
pytz
retry
git+https://github.com/ray-project/xgboost_ray.git#egg=xgboost_ray
Expand Down
2 changes: 1 addition & 1 deletion release/requirements_buildkite.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ anyscale
click
boto3
jinja2
protobuf >= 3.15.3, != 3.19.5, < 4.0.0
protobuf >= 3.15.3, != 3.19.5
pydantic < 1.10.0
pyyaml
requests
Expand Down

0 comments on commit 37c2b58

Please sign in to comment.