Fix default dist filename for release task
not sure why this fix was needed, did setuptools behavior change?
This commit is contained in:
parent
0e611ca866
commit
97e9f535f9
2
tasks.py
2
tasks.py
|
@ -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}')
|
||||||
|
|
Loading…
Reference in a new issue