2
0
Fork 0

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-14 15:02:58 -05:00
parent 0e611ca866
commit 97e9f535f9

View file

@ -27,5 +27,5 @@ def release(c, skip_tests=False):
c.run('python -m build --sdist') c.run('python -m build --sdist')
# upload to PyPI # upload to PyPI
filename = f'WuttJamaican-{__version__}.tar.gz' filename = f'wuttjamaican-{__version__}.tar.gz'
c.run(f'twine upload dist/{filename}') c.run(f'twine upload dist/{filename}')