Skip to content

Commit 9620336

Browse files
authored
fix mac wheel building (#41536)
Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent 82a8df1 commit 9620336

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/build-wheel-macos.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ if [ "$(uname -m)" = "arm64" ]; then
1717
"3.10"
1818
"3.11")
1919
else
20-
PY_MMS=("3.7"
21-
"3.8"
20+
PY_MMS=("3.8"
2221
"3.9"
2322
"3.10"
2423
"3.11")
@@ -94,6 +93,8 @@ for ((i=0; i<${#PY_MMS[@]}; ++i)); do
9493
echo "TRAVIS_COMMIT variable is not set, getting the current commit from git."
9594
TRAVIS_COMMIT=$(git rev-parse HEAD)
9695
fi
96+
# Pin the commit to the last commit.
97+
TRAVIS_COMMIT="82a8df138fe7fcc5c42536ebf26e8c3665704fee"
9798

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

0 commit comments

Comments
 (0)