File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 52
52
brew search python
53
53
brew install python@${{ matrix.python }}
54
54
python${{ matrix.python }} --version
55
- python${{ matrix.python }} -m pip install -U wheel setuptools
55
+ python${{ matrix.python }} -m pip install --break-system-packages - U wheel setuptools
56
56
python${{ matrix.python }} setup.py --data bazel-bin -q bdist_wheel --plat-name macosx_12_0_arm64
57
57
rm -rf build
58
58
python${{ matrix.python }} setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel --plat-name macosx_12_0_arm64
Original file line number Diff line number Diff line change @@ -39,15 +39,20 @@ $PYTHON -m pip --version
39
39
40
40
if [[ $( uname) == " Darwin" && $( uname -m) == " arm64" ]]; then
41
41
$PYTHON -m pip install --upgrade --break-system-packages pip
42
+ $PYTHON -m pip install --upgrade --break-system-packages setuptools
43
+ $PYTHON -m pip --version
44
+ $PYTHON -m pip install --break-system-packages ${TENSORFLOW_INSTALL}
45
+ $PYTHON -m pip install --break-system-packages " urllib3 <2"
46
+ $PYTHON -m pip uninstall --break-system-packages -y tensorflow-io-gcs-filesystem
42
47
else
43
48
$PYTHON -m pip install --upgrade pip
44
- fi
45
49
$PYTHON -m pip install --upgrade setuptools
46
50
$PYTHON -m pip --version
47
-
48
51
$PYTHON -m pip install -q ${TENSORFLOW_INSTALL}
49
52
$PYTHON -m pip install -q " urllib3 <2"
50
53
$PYTHON -m pip uninstall -y tensorflow-io-gcs-filesystem
54
+ fi
55
+
51
56
52
57
$PYTHON tools/build/configure.py
53
58
You can’t perform that action at this time.
0 commit comments