We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d80fc commit 9d9f307Copy full SHA for 9d9f307
1 file changed
.github/workflows/osx-arm64.yml
@@ -112,11 +112,12 @@ jobs:
112
113
- name: Install dependencies
114
run: |
115
- pip install --upgrade --break-system-packages pip setuptools delocate wheel pytest pytest-order
+ pip install --upgrade --break-system-packages pip setuptools delocate build wheel pytest pytest-order
116
117
- name: Build wheel
118
119
- python3 setup.py sdist bdist_wheel --skip-build-v8 -d stpyv8-${{ matrix.os }}-${{ matrix.python-version }}
+ python3 -m build --wheel --no-isolation --outdir stpyv8-${{ matrix.os }}-${{ matrix.python-version }}
120
+ # python3 setup.py sdist bdist_wheel --skip-build-v8 -d stpyv8-${{ matrix.os }}-${{ matrix.python-version }}
121
env:
122
ARCHFLAGS: '-arch arm64'
123
_PYTHON_HOST_PLATFORM: 'macosx-11.0-arm64'
0 commit comments