File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1+ .PHONY : check test test-runflake8 test-pytest codecov \
2+ lint flake8 mypy \
3+ isortify blacken \
4+ build publish
5+
16check : test lint
27
38test : test-runflake8 test-pytest
@@ -33,12 +38,10 @@ mypy:
3338
3439
3540
36- sdist :
37- python setup.py sdist
38-
39- wheel :
40- python setup.py bdist_wheel
41+ build :
42+ python -m build
4143
44+ # https://test.pypi.org/project/flake8-no-implicit-concat
4245publish_repository ?= testpypi # Set to pypi to publish as production
43- publish: sdist wheel
46+ publish: build
4447 twine upload --skip-existing --verbose --repository $(publish_repository) dist/*
Original file line number Diff line number Diff line change 7676 mypy
7777publish =
7878 twine
79- wheel
79+ build
8080 setuptools
8181
8282
You can’t perform that action at this time.
0 commit comments