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 3150ccf + 86553cb commit 4d3c0e3Copy full SHA for 4d3c0e3
Makefile
@@ -1,5 +1,6 @@
1
all: source manylinux
2
3
+PYTHON := python3
4
POLICY := manylinux_2_28
5
PLATFORM := x86_64
6
TAGS := cp312-cp312
@@ -17,9 +18,9 @@ build-wheels:
17
18
$(foreach tag,$(TAGS),$(MAKE) build-wheel TAG=$(tag) PATH="/opt/python/$(tag)/bin:$(PATH)";)
19
20
build-wheel:
- python -m build --wheel --outdir dist-$(POLICY)-$(PLATFORM)-$(TAG)
21
+ $(PYTHON) -m build --wheel --outdir dist-$(POLICY)-$(PLATFORM)-$(TAG)
22
auditwheel repair dist-$(POLICY)-$(PLATFORM)-$(TAG)/*.whl
23
24
clean:
- python3 setup.py clean --all
25
+ $(PYTHON) setup.py clean --all
26
rm -fr build dist dist-* fuse_python.egg-info wheelhouse
0 commit comments