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.
1 parent 91a741a commit 8c2a322Copy full SHA for 8c2a322
Makefile
@@ -1,6 +1,10 @@
1
VERSION := $(shell python setup.py --version)
2
3
export COVERAGE_RCFILE := pyproject.toml
4
+export CIBW_ENVIRONMENT_PASS_LINUX := CFLAGS PIP_CONFIG_SETTINGS DEPENDENCY_INJECTOR_LIMITED_API
5
+export PIP_CONFIG_SETTINGS ?= build_ext=-j4
6
+export DEPENDENCY_INJECTOR_LIMITED_API ?= 1
7
+export CFLAGS ?= -g0
8
9
clean:
10
# Clean sources
@@ -63,3 +67,6 @@ publish:
63
67
# Create and upload tag
64
68
git tag -a $(VERSION) -m 'version $(VERSION)'
65
69
git push --tags
70
+
71
+wheels:
72
+ cibuildwheel --output-dir wheelhouse
0 commit comments