Fix default dist filename for release task
not sure why this fix was needed, did setuptools behavior change?
This commit is contained in:
parent
26756bbe60
commit
5ff8802061
2
tasks.py
2
tasks.py
|
@ -23,4 +23,4 @@ def release(ctx):
|
||||||
ctx.run('python -m build --sdist')
|
ctx.run('python -m build --sdist')
|
||||||
|
|
||||||
# upload to public PyPI
|
# upload to public PyPI
|
||||||
ctx.run('twine upload dist/Corporal-{}.tar.gz'.format(__version__))
|
ctx.run('twine upload dist/corporal-{}.tar.gz'.format(__version__))
|
||||||
|
|
Loading…
Reference in a new issue