1
0
Fork 0

Fixed release script and author email, because pypi made some breaking changes.

This commit is contained in:
Irina Truong 2017-01-11 18:33:36 -08:00
parent 8a76a75523
commit c7bcc7ac74
3 changed files with 1 additions and 7 deletions

View File

@ -63,10 +63,6 @@ def create_git_tag(tag_name):
run_step('git', 'tag', tag_name)
def register_with_pypi():
run_step('python', 'setup.py', 'register')
def create_source_tarball():
run_step('python', 'setup.py', 'sdist')
@ -111,7 +107,6 @@ if __name__ == '__main__':
commit_for_release('pgcli/__init__.py', ver)
create_git_tag('v%s' % ver)
register_with_pypi()
create_source_tarball()
push_to_github()
push_tags_to_github()

View File

@ -3,7 +3,6 @@
* Bump the version number in pgcli/__init__.py
* Commit with message: 'Releasing version X.X.X.'
* Create a tag: git tag vX.X.X
* Register with pypi for new version: python setup.py register
* Fix the image url in PyPI to point to github raw content. https://raw.githubusercontent.com/dbcli/pgcli/master/screenshots/image01.png
* Create source dist tar ball: python setup.py sdist
* Test this by installing it in a fresh new virtualenv. Run SanityChecks [./sanity_checks.txt].

View File

@ -34,7 +34,7 @@ if platform.system() != 'Windows' and not platform.system().startswith("CYGWIN")
setup(
name='pgcli',
author='Amjith Ramanujam',
author_email='amjith[dot]r[at]gmail.com',
author_email='amjith.r+pgcli@gmail.com',
version=version,
license='LICENSE.txt',
url='http://pgcli.com',