File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 1010
1111test :
1212 rm -f * .so * .pyd
13- ${PYTHON} setup.py clean
14- ${PYTHON} setup.py build
13+ ${PYTHON} -m build
1514 ${PYTHON} -m pytest -v tests
1615 # mypy --follow-imports skip miniaudio.py
1716
2019
2120win_wheels : test
2221 cmd /C del /q dist\*
23- py -3.9-64 setup.py clean --all
24- py -3.9-64 setup.py bdist_wheel
2522 py -3.10-64 setup.py clean --all
2623 py -3.10-64 setup.py bdist_wheel
2724 py -3.11-64 setup.py clean --all
@@ -35,16 +32,15 @@ win_wheels: test
3532
3633linux_wheel : test
3734 rm -f dist/* * .so
38- ${PYTHON} setup.py bdist_wheel
35+ ${PYTHON} -m build --wheel
3936 @echo
4037 @echo
4138 @echo " REMEMBER: the Linux wheel may be very system/cpu dependent so should you really use this? Beware."
4239 @echo
4340
4441dist : test
4542 rm -f dist/* * .so
46- ${PYTHON} setup.py clean
47- ${PYTHON} setup.py sdist
43+ ${PYTHON} -m build --sdist
4844
4945upload : check_upload
5046 twine upload dist/*
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ license = MIT
1010license_files = LICENSE
1111classifiers =
1212 Development Status :: 5 - Production/Stable
13- License :: OSI Approved :: MIT License
13+ License-Expression :: MIT
1414 Programming Language :: C
1515 Programming Language :: Python
1616 Programming Language :: Python :: 3
You can’t perform that action at this time.
0 commit comments