diff --git a/tasks.py b/tasks.py index aeb7eab..cb2927f 100644 --- a/tasks.py +++ b/tasks.py @@ -47,8 +47,5 @@ def release(c): # filename of built package filename = 'rattail-nationbuilder-{}.tar.gz'.format(__version__) - # TODO: uncomment and update these details, to upload to private PyPI - #c.run('scp dist/{} rattail@pypi.example.com:/srv/pypi/rattail-nationbuilder/'.format(filename)) - - # TODO: or, uncomment this to upload to *public* PyPI - #c.run('twine upload dist/{}'.format(filename)) + # upload to PyPI + c.run('twine upload dist/{}'.format(filename))