File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ jobs:
164164 uses: pypa/cibuildwheel@v3.2.1
165165 with:
166166 package-dir: ./dist/${{ startsWith(matrix.buildplat[1], 'macosx') && env.sdist_name || needs.build_sdist.outputs.sdist_file }}
167+ output-dir: ./dist
167168 env:
168169 CIBW_BUILD: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}
169170 CIBW_BUILD_FRONTEND: ${{ matrix.cibw_build_frontend || 'pip' }}
@@ -194,18 +195,18 @@ jobs:
194195
195196 - name: Validate wheel RECORD
196197 shell: bash -el {0}
197- run: for whl in $(ls wheelhouse ); do wheel unpack wheelhouse/ $whl -d /tmp; done
198+ run: for whl in $(ls ./dist/*.whl ); do wheel unpack $whl -d /tmp; done
198199
199200 - uses: actions/upload-artifact@v5
200201 with:
201202 name: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}
202- path: ./wheelhouse /*.whl
203+ path: ./dist /*.whl
203204
204205 - name: Upload wheels & sdist
205206 if: ${{ success() && env.IS_SCHEDULE_DISPATCH == 'true' }}
206207 uses: scientific-python/upload-nightly-action@0.6.2
207208 with:
208- artifacts_path: dist
209+ artifacts_path: ./ dist
209210 anaconda_nightly_upload_token: ${{secrets.PANDAS_NIGHTLY_UPLOAD_TOKEN}}
210211
211212 publish:
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ pandas/py.typed
6767.ropeproject
6868# wheel files
6969*.whl
70- **/wheelhouse/*
7170pip-wheel-metadata
7271# coverage
7372.coverage
You can’t perform that action at this time.
0 commit comments