Skip to content

Commit 6482c6e

Browse files
committed
Pass twine a list of filepaths
1 parent 894960c commit 6482c6e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

changes/packaging.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@ def install_package(context):
4242

4343
def upload_package(context):
4444
"""Uploads your project packages to pypi with twine."""
45+
4546
if not context.dry_run and build_package(context):
46-
upload_args = 'twine upload dist/*'
47+
upload_args = 'twine upload '
48+
upload_args += ' '.join(path('dist').files())
4749
if context.pypi:
4850
upload_args += ' -r %s' % context.pypi
4951

0 commit comments

Comments
 (0)