Skip to content
Snippets Groups Projects
Commit fd527b2fcb41 authored by Stefan Behnel's avatar Stefan Behnel
Browse files

Add Makefile target to generate a universal Py2/3 wheel when not compiling Cython. See GH-3354.

parent 59857673ca2c
Branches
No related tags found
No related merge requests found
......@@ -17,6 +17,12 @@
dist/$(PACKAGENAME)-$(VERSION).tar.gz:
$(PYTHON) setup.py sdist
pywheel: dist/$(PACKAGENAME)-$(VERSION)-py2.py3-none-any.whl
dist/$(PACKAGENAME)-$(VERSION)-py2.py3-none-any.whl:
${PYTHON} setup.py bdist_wheel --no-cython-compile --universal
[ -f "$@" ] # check that we generated the expected universal wheel
TMPDIR = .repo_tmp
.git: .gitrev
rm -rf $(TMPDIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment