@@ -119,9 +119,9 @@ jobs:
119
119
echo "Building platform_id: ${{ matrix.os.platform_id }}"
120
120
uv run python --version
121
121
uv run python --version | grep ${{ matrix.python-version }}
122
- uv pip install --system build
123
122
cat ./pyproject.toml
124
- uv run python -m cibuildwheel --output-dir wheelhouse
123
+ uv pip install .[build]
124
+ python -m cibuildwheel --output-dir ./wheelhouse
125
125
echo "step 1"
126
126
ls -l wheelhouse
127
127
uv run wheel tags --remove --platform-tag macosx_${{ matrix.os.min_macos_version }}_0_x86_64 ./wheelhouse/*.whl
@@ -170,9 +170,9 @@ jobs:
170
170
echo "Building platform_id: ${{ matrix.os.platform_id }}"
171
171
uv run python --version
172
172
uv run python --version | grep ${{ matrix.python-version }}
173
- uv pip install --system build
174
173
cat ./pyproject.toml
175
- uv run python -m cibuildwheel --output-dir wheelhouse
174
+ uv pip install .[build]
175
+ python -m cibuildwheel --output-dir ./wheelhouse
176
176
echo "step 1"
177
177
ls -l wheelhouse
178
178
uv run wheel tags --remove --platform-tag macosx_${{ matrix.os.min_macos_version }}_0_arm64 ./wheelhouse/*.whl
@@ -216,9 +216,9 @@ jobs:
216
216
echo "Building platform_id: ${{ matrix.os.platform_id }}"
217
217
uv run python --version
218
218
uv run python --version | grep ${{ matrix.python-version }}
219
- uv pip install --system build
220
219
cat ./pyproject.toml
221
- uv run python -m cibuildwheel --output-dir ./wheelhouse
220
+ uv pip install .[build]
221
+ python -m cibuildwheel --output-dir ./wheelhouse
222
222
ls -l ./wheelhouse
223
223
for file in ./wheelhouse/*.whl; do
224
224
echo "Inspecting $file"
0 commit comments