Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 569ea20

Browse files
author
matt
committed
Fixes to automated delivery
1 parent 9851acc commit 569ea20

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ docs-install:
3636
docs:
3737
. venv/bin/activate; cd docs && make html
3838

39-
release: test-install
39+
release:
4040
. venv/bin/activate; python setup.py sdist upload
4141
. venv/bin/activate; python setup.py bdist_wheel upload
4242

deploy.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,13 @@ def main(version):
6262
os.system('git push --tags')
6363
print('Done')
6464

65-
print('Deploy complete')
65+
# TODO: Remove this once 6.x is Generally Available
66+
67+
print('!' * 80)
68+
print('! {:^76} !'.format('Go hide latest RC and unhide latest 5.x'))
69+
print('!' * 80)
70+
71+
os.system('open "https://pypi.python.org/pypi?:action=pkg_edit&name=twilio"')
6672

6773
if __name__ == '__main__':
6874
parser = ArgumentParser()

0 commit comments

Comments
 (0)