Fix default dist filename for release task

not sure why this fix was needed, did setuptools behavior change?
This commit is contained in:
Lance Edgar 2024-04-16 10:48:33 -05:00
parent 26756bbe60
commit 5ff8802061

View file

@ -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__))