We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 809242d + 656276e commit f1d43edCopy full SHA for f1d43ed
.github/workflows/_build-non-pure-package.yml
@@ -84,7 +84,16 @@ jobs:
84
conda install --file requirements/conda.txt
85
conda install --file requirements/pip.txt
86
pip install --upgrade build
87
+
88
89
+ - name: Build and repair wheels
90
+ run: |
91
python -m pip wheel --no-deps --wheel-dir ./dist .
92
+ if [[ "${{ matrix.buildplat }}" == "ubuntu-latest" ]]; then
93
+ conda install auditwheel patchelf
94
+ LD_LIBRARY_PATH=$CONDA_PREFIX/lib auditwheel repair dist/*.whl -w dist/
95
+ rm dist/*-linux_*.whl
96
+ fi
97
98
- name: Upload wheels to GitHub
99
uses: actions/upload-artifact@v4
0 commit comments