Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
all: source manylinux

PYTHON := python3
POLICY := manylinux_2_28
PLATFORM := x86_64
TAGS := cp312-cp312
Expand All @@ -17,9 +18,9 @@ build-wheels:
$(foreach tag,$(TAGS),$(MAKE) build-wheel TAG=$(tag) PATH="/opt/python/$(tag)/bin:$(PATH)";)

build-wheel:
python -m build --wheel --outdir dist-$(POLICY)-$(PLATFORM)-$(TAG)
$(PYTHON) -m build --wheel --outdir dist-$(POLICY)-$(PLATFORM)-$(TAG)
auditwheel repair dist-$(POLICY)-$(PLATFORM)-$(TAG)/*.whl

clean:
python3 setup.py clean --all
$(PYTHON) setup.py clean --all
rm -fr build dist dist-* fuse_python.egg-info wheelhouse