Show More
@@ -1,65 +1,64 b'' | |||||
1 | #!/usr/bin/env python |
|
1 | #!/usr/bin/env python | |
2 | """IPython release script. |
|
2 | """IPython release script. | |
3 |
|
3 | |||
4 | This should ONLY be run at real release time. |
|
4 | This should ONLY be run at real release time. | |
5 | """ |
|
5 | """ | |
6 | from __future__ import print_function |
|
6 | from __future__ import print_function | |
7 |
|
7 | |||
8 | from toollib import * |
|
8 | from toollib import * | |
9 |
|
9 | |||
10 | # Get main ipython dir, this will raise if it doesn't pass some checks |
|
10 | # Get main ipython dir, this will raise if it doesn't pass some checks | |
11 | ipdir = get_ipdir() |
|
11 | ipdir = get_ipdir() | |
12 | tooldir = pjoin(ipdir, 'tools') |
|
12 | tooldir = pjoin(ipdir, 'tools') | |
13 | distdir = pjoin(ipdir, 'dist') |
|
13 | distdir = pjoin(ipdir, 'dist') | |
14 |
|
14 | |||
15 | # Where I keep static backups of each release |
|
15 | # Where I keep static backups of each release | |
16 | ipbackupdir = os.path.expanduser('~/ipython/backup') |
|
16 | ipbackupdir = os.path.expanduser('~/ipython/backup') | |
17 |
|
17 | |||
18 | # Start in main IPython dir |
|
18 | # Start in main IPython dir | |
19 | cd(ipdir) |
|
19 | cd(ipdir) | |
20 |
|
20 | |||
21 | # Load release info |
|
21 | # Load release info | |
22 | execfile(pjoin('IPython','core','release.py')) |
|
22 | execfile(pjoin('IPython','core','release.py')) | |
23 |
|
23 | |||
24 | # Build site addresses for file uploads |
|
24 | # Build site addresses for file uploads | |
25 | release_site = '%s/release/%s' % (archive, version) |
|
25 | release_site = '%s/release/%s' % (archive, version) | |
26 | backup_site = '%s/backup/' % archive |
|
26 | backup_site = '%s/backup/' % archive | |
27 |
|
27 | |||
28 | # Start actual release process |
|
28 | # Start actual release process | |
29 | print() |
|
29 | print() | |
30 | print('Releasing IPython') |
|
30 | print('Releasing IPython') | |
31 | print('=================') |
|
31 | print('=================') | |
32 | print() |
|
32 | print() | |
33 | print('Version:', version) |
|
33 | print('Version:', version) | |
34 | print() |
|
34 | print() | |
35 | print('Source IPython directory:', ipdir) |
|
35 | print('Source IPython directory:', ipdir) | |
36 | print() |
|
36 | print() | |
37 |
|
37 | |||
38 | # Perform local backup, go to tools dir to run it. |
|
38 | # Perform local backup, go to tools dir to run it. | |
39 | cd(tooldir) |
|
39 | cd(tooldir) | |
40 | sh('./make_tarball.py') |
|
40 | sh('./make_tarball.py') | |
41 | sh('mv ipython-*.tgz %s' % ipbackupdir) |
|
41 | sh('mv ipython-*.tgz %s' % ipbackupdir) | |
42 |
|
42 | |||
43 | # Build release files |
|
43 | # Build release files | |
44 | sh('./build_release %s' % ipdir) |
|
44 | sh('./build_release %s' % ipdir) | |
45 |
|
45 | |||
46 | # Register with the Python Package Index (PyPI) |
|
46 | # Register with the Python Package Index (PyPI) | |
47 | print( 'Registering with PyPI...') |
|
47 | print( 'Registering with PyPI...') | |
48 | cd(ipdir) |
|
48 | cd(ipdir) | |
49 | sh('./setup.py register') |
|
49 | sh('./setup.py register') | |
50 |
|
50 | |||
51 | # Upload all files |
|
51 | # Upload all files | |
52 | for cmd in [sdists, eggs] + win_builds: |
|
52 | sh(sdists + ' upload') | |
53 | sh(cmd + ' upload') |
|
|||
54 | cd(distdir) |
|
53 | cd(distdir) | |
55 | print( 'Uploading distribution files...') |
|
54 | print( 'Uploading distribution files...') | |
56 |
|
55 | |||
57 | # Make target dir if it doesn't exist |
|
56 | # Make target dir if it doesn't exist | |
58 | sh('ssh %s "mkdir -p %s/release/%s" ' % (archive_user, archive_dir, version)) |
|
57 | sh('ssh %s "mkdir -p %s/release/%s" ' % (archive_user, archive_dir, version)) | |
59 | sh('scp * %s' % release_site) |
|
58 | sh('scp * %s' % release_site) | |
60 |
|
59 | |||
61 | print( 'Uploading backup files...') |
|
60 | print( 'Uploading backup files...') | |
62 | cd(ipbackupdir) |
|
61 | cd(ipbackupdir) | |
63 | sh('scp `ls -1tr *tgz | tail -1` %s' % backup_site) |
|
62 | sh('scp `ls -1tr *tgz | tail -1` %s' % backup_site) | |
64 |
|
63 | |||
65 | print('Done!') |
|
64 | print('Done!') |
General Comments 0
You need to be logged in to leave comments.
Login now