Skip to content

Commit

Permalink
fix mac wheel building (#41536)
Browse files Browse the repository at this point in the history
Signed-off-by: Lonnie Liu <[email protected]>
  • Loading branch information
aslonnie authored Nov 30, 2023
1 parent 82a8df1 commit 9620336
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/build-wheel-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ if [ "$(uname -m)" = "arm64" ]; then
"3.10"
"3.11")
else
PY_MMS=("3.7"
"3.8"
PY_MMS=("3.8"
"3.9"
"3.10"
"3.11")
Expand Down Expand Up @@ -94,6 +93,8 @@ for ((i=0; i<${#PY_MMS[@]}; ++i)); do
echo "TRAVIS_COMMIT variable is not set, getting the current commit from git."
TRAVIS_COMMIT=$(git rev-parse HEAD)
fi
# Pin the commit to the last commit.
TRAVIS_COMMIT="82a8df138fe7fcc5c42536ebf26e8c3665704fee"

sed -i .bak "s/{{RAY_COMMIT_SHA}}/$TRAVIS_COMMIT/g" ray/__init__.py && rm ray/__init__.py.bak

Expand Down

0 comments on commit 9620336

Please sign in to comment.