##// END OF EJS Templates
issue#13073: Made a couple of fixes after testing on Wayland (Gnome)
issue#13073: Made a couple of fixes after testing on Wayland (Gnome)

File last commit:

r27381:8491abce
r27660:d15e4f6a
Show More
release
85 lines | 2.0 KiB | text/plain | TextLexer
Thomas Kluyver
Release scripts need to use Python 3
r24250 #!/usr/bin/env python3
Fernando Perez
Cleaned up release tools directory....
r2118 """IPython release script.
Ville M. Vainio
crlf -> lf
r1032
Fernando Perez
Update release-related tools, make more py3k-friendly.
r4450 This should ONLY be run at real release time.
Fernando Perez
Cleaned up release tools directory....
r2118 """
Fernando Perez
Update release-related tools, make more py3k-friendly.
r4450 from __future__ import print_function
Ville M. Vainio
crlf -> lf
r1032
Matthias Bussonnier
add explicits imports on release tools
r22021 import os
Matthias Bussonnier
Protect release script against non dist files....
r23953 from glob import glob
Thomas Kluyver
Upload to PyPI in release upload script...
r23302 from subprocess import call
Matthias Bussonnier
add explicits imports on release tools
r22021 import sys
Matthias Bussonnier
Improve build script....
r22028 from toollib import (get_ipdir, pjoin, cd, execfile, sh, archive,
Matthias Bussonnier
more cleanup
r27320 archive_user, archive_dir)
Fernando Perez
Cleaned up release tools directory....
r2118
# Get main ipython dir, this will raise if it doesn't pass some checks
ipdir = get_ipdir()
Fernando Perez
Update release-related tools, make more py3k-friendly.
r4450 tooldir = pjoin(ipdir, 'tools')
distdir = pjoin(ipdir, 'dist')
Fernando Perez
Add 0.10.1 release notes to docs and minor tool updates....
r3135 # Where I keep static backups of each release
ipbackupdir = os.path.expanduser('~/ipython/backup')
MinRK
updates to release scripts...
r17581 if not os.path.exists(ipbackupdir):
os.makedirs(ipbackupdir)
Fernando Perez
Add 0.10.1 release notes to docs and minor tool updates....
r3135
# Start in main IPython dir
Fernando Perez
Cleaned up release tools directory....
r2118 cd(ipdir)
# Load release info
Matthias Bussonnier
Improve build script....
r22028 version = None
Min RK
remove strict requirement for less,invoke in wheel/sdist...
r19847 execfile(pjoin('IPython','core','release.py'), globals())
Fernando Perez
Cleaned up release tools directory....
r2118
Fernando Perez
Update release-related tools, make more py3k-friendly.
r4450 # Build site addresses for file uploads
release_site = '%s/release/%s' % (archive, version)
Fernando Perez
Fix backup URL. Final commit before 0.11 release.
r4457 backup_site = '%s/backup/' % archive
Fernando Perez
Update release-related tools, make more py3k-friendly.
r4450
# Start actual release process
print()
print('Releasing IPython')
print('=================')
print()
print('Version:', version)
print()
print('Source IPython directory:', ipdir)
print()
Ville M. Vainio
crlf -> lf
r1032
Fernando Perez
Add 0.10.1 release notes to docs and minor tool updates....
r3135 # Perform local backup, go to tools dir to run it.
cd(tooldir)
Ville M. Vainio
crlf -> lf
r1032
Matthias Bussonnier
Update release process instruction....
r22714 if 'upload' in sys.argv:
cd(distdir)
Ville M. Vainio
crlf -> lf
r1032
Matthias Bussonnier
Protect release script against non dist files....
r23953 # do not upload OS specific files like .DS_Store
Thomas Kluyver
sdist extension is .tar.gz, not .tgz
r24019 to_upload = glob('*.whl')+glob('*.tar.gz')
Ville M. Vainio
crlf -> lf
r1032
Matthias Bussonnier
Update release process instruction....
r22714 # Make target dir if it doesn't exist
Thomas Kluyver
Upload to PyPI in release upload script...
r23302 print('1. Uploading IPython to archive.ipython.org')
Matthias Bussonnier
Update release process instruction....
r22714 sh('ssh %s "mkdir -p %s/release/%s" ' % (archive_user, archive_dir, version))
Matthias Bussonnier
don't try to upload tarxz
r27381 sh('scp *.tar.gz *.whl %s' % release_site)
Matthias Bussonnier
Factor build logic into function
r22043
Thomas Kluyver
Upload to PyPI in release upload script...
r23302 print('2. Uploading backup files...')
Matthias Bussonnier
Update release process instruction....
r22714 cd(ipbackupdir)
sh('scp `ls -1tr *tgz | tail -1` %s' % backup_site)
Matthias Bussonnier
Update release script not to upload insecurly
r22023
Thomas Kluyver
Upload to PyPI in release upload script...
r23302 print('3. Uploading to PyPI using twine')
cd(distdir)
Matthias Bussonnier
fix long description
r27317 call(['twine', 'upload', '--verbose'] + to_upload)
Thomas Kluyver
Upload to PyPI in release upload script...
r23302
Matthias Bussonnier
Update release process instruction....
r22714 else:
Thomas Kluyver
Upload to PyPI in release upload script...
r23302 # Build, but don't upload
# Make backup tarball
Matthias Bussonnier
release 8.0.0a1
r27327 sh('python make_tarball.py')
Matthias Bussonnier
Update release process instruction....
r22714 sh('mv ipython-*.tgz %s' % ipbackupdir)
Matthias Bussonnier
Improve build script....
r22028
Matthias Bussonnier
Update release process instruction....
r22714 # Build release files
Matthias Bussonnier
Update the release process to attempt reproducible builds....
r25769 sh('./build_release')
Matthias Bussonnier
Improve build script....
r22028
Matthias Bussonnier
Update release process instruction....
r22714 cd(ipdir)
MinRK
add wheels to release...
r16795
Thomas Kluyver
Upload to PyPI in release upload script...
r23302 print("`./release upload` to upload source distribution on PyPI and ipython archive")
Matthias Bussonnier
Update release process instruction....
r22714 sys.exit(0)
MinRK
add GitHub uploads to release script
r8598
Ville M. Vainio
crlf -> lf
r1032