Skip to content

Commit

Permalink
Merge pull request #5785 from hugovk/replace-setup.py-dist-with-build
Browse files Browse the repository at this point in the history
Replace 'setup.py sdist' with '-m build --sdist'
  • Loading branch information
radarhere committed Oct 26, 2021
2 parents 772f79b + 5057f0a commit ff1cb39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Expand Up @@ -96,7 +96,8 @@ release-test:

.PHONY: sdist
sdist:
python3 setup.py sdist --format=gztar
python3 -m build --help > /dev/null 2>&1 || python3 -m pip install build
python3 -m build --sdist

.PHONY: test
test:
Expand Down

0 comments on commit ff1cb39

Please sign in to comment.