##// END OF EJS Templates
Merge pull request #12439 from meeseeksmachine/auto-backport-of-pr-12437-on-7.x
Merge pull request #12439 from meeseeksmachine/auto-backport-of-pr-12437-on-7.x

File last commit:

r25778:6cf72b2a
r25893:2e70f9ca merge
Show More
build_release
22 lines | 496 B | 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 build script.
ville
initialization (no svn history)
r988 """
Fernando Perez
Build 64-bit windows installer via Wine.
r6601 import os
Matthias Bussonnier
Backport PR #12347: What's new in 7.15+ Reproducible build working
r25778 import sys
MinRK
more minor fixes to release scripts...
r17631 from shutil import rmtree
Fernando Perez
Build 64-bit windows installer via Wine.
r6601
Matthias Bussonnier
cleanup build process
r24558 from toollib import sh, pjoin, get_ipdir, cd, sdists, buildwheels
Matthias Bussonnier
Factor build logic into function
r22043
def build_release():
# Get main ipython dir, this will raise if it doesn't pass some checks
ipdir = get_ipdir()
cd(ipdir)
ville
initialization (no svn history)
r988
Matthias Bussonnier
Factor build logic into function
r22043 # Build source and binary distros
sh(sdists)
buildwheels()
Matthias Bussonnier
Backport PR #12347: What's new in 7.15+ Reproducible build working
r25778 sh(' '.join([sys.executable, 'tools/retar.py', 'dist/*.gz']))
Ville M. Vainio
mkrel changes (copy stff from 'release' sh script)
r1197
Matthias Bussonnier
Factor build logic into function
r22043 if __name__ == '__main__':
build_release()