Skip to content

Commit

Permalink
python -m build
Browse files Browse the repository at this point in the history
  • Loading branch information
JoesCat committed Sep 13, 2024
1 parent 1615fb4 commit 148adc8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion py/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
EXTRA_DIST = setup.py uninameslist.py
GENERATED = build wheel uninameslist.egg-info dist __pycache

# wheel: $(EXTRA_DIST)
# $(PYTHON) $(srcdir)/setup.py sdist --dist-dir wheel bdist_wheel --universal --dist-dir wheel
# python3.11+ replacement for 'python setup.py sdist bdist_wheel'==>'python -m build'
wheel: $(EXTRA_DIST)
$(PYTHON) $(srcdir)/setup.py sdist --dist-dir wheel bdist_wheel --universal --dist-dir wheel
$(PYTHON) -m build


all-local: wheel

Expand Down

0 comments on commit 148adc8

Please sign in to comment.