##// END OF EJS Templates
Minor updates to release tools
Fernando Perez -
Show More
@@ -52,10 +52,12 b" sh('./setup.py register')"
52 52 sh('./setup.py sdist --formats=gztar,zip upload')
53 53 cd(distdir)
54 54 print( 'Uploading distribution files...')
55 # FIXME: this assumes the path *with the version number* exists on the server
55 56 sh('scp * %s' % release_site)
56 57
57 58 print( 'Uploading backup files...')
58 59 cd(ipbackupdir)
60 # FIXME: this assumes the path *with the version number* exists on the server
59 61 sh('scp `ls -1tr *tgz | tail -1` %s' % backup_site)
60 62
61 63 print('Done!')
@@ -16,4 +16,6 b" execfile(pjoin(ipdir, 'IPython','core','release.py'))"
16 16 testing_site = '%s/testing/%s' % (archive, version)
17 17
18 18 cd(distdir)
19
20 # FIXME: this assumes the path *with the version number* exists on the server
19 21 sh('scp * %s' % testing_site)
General Comments 0
You need to be logged in to leave comments. Login now