Skip to content

Commit

Permalink
[ci] fix wheel upload for windows (#43564)
Browse files Browse the repository at this point in the history
The wheel uploading script is failing on windows because it uses an old version of pyopenssl: https://buildkite.com/ray-project/postmerge/builds/3187#018df629-3d07-4ae4-a75f-090eb911104e/6-12137. Pin the version in the script.

Signed-off-by: can <can@anyscale.com>
  • Loading branch information
can-anyscale committed Feb 29, 2024
1 parent 0334592 commit 93d8d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build/copy_build_artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if [[ "$OSTYPE" == "msys" ]]; then
fi

export PATH=/opt/python/cp38-cp38/bin:$PATH
pip install -q aws_requests_auth boto3
pip install -q -c python/requirements_compiled.txt aws_requests_auth boto3 pyopenssl
./ci/env/env_info.sh

# Sync the directory to buildkite artifacts
Expand Down

0 comments on commit 93d8d96

Please sign in to comment.