Skip to content

Commit

Permalink
Use specific version of python for arm64 macsos wheel (#1935)
Browse files Browse the repository at this point in the history
  • Loading branch information
yongtang committed Feb 1, 2024
1 parent ab9d171 commit e00bac7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,11 @@ jobs:
python --version
brew search python
brew install python@${{ matrix.python }}
python3 --version
python --version
python -m pip install -U wheel setuptools
python setup.py --data bazel-bin -q bdist_wheel --plat-name macosx_12_0_arm64
python${{ matrix.python }} --version
python${{ matrix.python }} -m pip install -U wheel setuptools
python${{ matrix.python }} setup.py --data bazel-bin -q bdist_wheel --plat-name macosx_12_0_arm64
rm -rf build
python setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel --plat-name macosx_12_0_arm64
python${{ matrix.python }} setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel --plat-name macosx_12_0_arm64
ls dist/*
mkdir -p wheelhouse
for f in dist/*.whl; do
Expand Down

0 comments on commit e00bac7

Please sign in to comment.