We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a804778 commit 47e36fcCopy full SHA for 47e36fc
Makefile
@@ -168,13 +168,15 @@ docs:
168
$(VENV_ACTIVATE) $(VENV_NAME) && \
169
sphinx-build docs docs/build
170
171
-ifeq ($(DETECTED_OS), linux)
172
-deploy:
+repair-linux:
173
docker run \
174
-v $(shell pwd):/io \
175
-u $(shell id -u ${USER}):$(shell id -g ${USER}) \
176
quay.io/pypa/manylinux_2_34_x86_64 \
177
/bin/bash -c "cd /io && LD_LIBRARY_PATH=/io/build/Release/bin/isx/lib:$LD_LIBRARY_PATH auditwheel repair /io/build/Release/bin/dist/isx*.whl"
+
178
+ifeq ($(DETECTED_OS), linux)
179
+deploy: repair-linux
180
181
pip install twine && \
182
twine upload --repository testpypi '$(shell ls wheelhouse/isx-*.whl)'
0 commit comments