Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/_build-non-pure-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,16 @@ jobs:
conda install --file requirements/conda.txt
conda install --file requirements/pip.txt
pip install --upgrade build


- name: Build and repair wheels
run: |
python -m pip wheel --no-deps --wheel-dir ./dist .
if [[ "${{ matrix.buildplat }}" == "ubuntu-latest" ]]; then
conda install auditwheel patchelf
LD_LIBRARY_PATH=$CONDA_PREFIX/lib auditwheel repair dist/*.whl -w dist/
rm dist/*-linux_*.whl
fi

- name: Upload wheels to GitHub
uses: actions/upload-artifact@v4
Expand Down
Loading