Skip to content

Commit

Permalink
[jobs] Fix test_backwards_compatibility.py by pinning pydantic<2 (r…
Browse files Browse the repository at this point in the history
…ay-project#37097)

This appears to be the same issue as ray-project#36990

Pinning the version in the install in `test_backwards_compatibility.sh`

Signed-off-by: e428265 <arvind.chandramouli@lmco.com>
  • Loading branch information
edoakes authored and arvind-chandra committed Aug 31, 2023
1 parent 10668d6 commit dba42d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ do
conda create -y -n "${env_name}" python="${PYTHON_VERSION}"
conda activate "${env_name}"

pip install -U ray=="${RAY_VERSION}"
pip install -U ray[default]=="${RAY_VERSION}"
# Pin pydantic version due to: https://github.com/ray-project/ray/issues/36990.
pip install -U "pydantic<2" ray=="${RAY_VERSION}" ray[default]=="${RAY_VERSION}"

printf "\n\n\n"
echo "========================================================="
Expand Down

0 comments on commit dba42d4

Please sign in to comment.