Commit 1731fbeb authored by Sviatoslav Sydorenko's avatar Sviatoslav Sydorenko Committed by Jason R. Coombs

Replace pep517.build with build (#37)

* Replace pep517.build with build

Resolves #30

* Prefer simple usage
Co-authored-by: default avatarJason R. Coombs <jaraco@jaraco.com>
parent 3e876d79
...@@ -24,7 +24,7 @@ commands = ...@@ -24,7 +24,7 @@ commands =
[testenv:release] [testenv:release]
skip_install = True skip_install = True
deps = deps =
pep517>=0.5 build
twine[keyring]>=1.13 twine[keyring]>=1.13
path path
jaraco.develop>=7.1 jaraco.develop>=7.1
...@@ -35,6 +35,6 @@ setenv = ...@@ -35,6 +35,6 @@ setenv =
TWINE_USERNAME = {env:TWINE_USERNAME:__token__} TWINE_USERNAME = {env:TWINE_USERNAME:__token__}
commands = commands =
python -c "import path; path.Path('dist').rmtree_p()" python -c "import path; path.Path('dist').rmtree_p()"
python -m pep517.build . python -m build
python -m twine upload dist/* python -m twine upload dist/*
python -m jaraco.develop.create-github-release python -m jaraco.develop.create-github-release
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment