##// END OF EJS Templates
Still test on 3.6 – Release is 3.7+...
Still test on 3.6 – Release is 3.7+ Just in case we still test on 3.6 but won't make efforts to write 3.6 compatible code.

File last commit:

r25769:36ef3227
r25875:7a5eb2cb
Show More
build_release
22 lines | 496 B | text/plain | TextLexer
#!/usr/bin/env python3
"""IPython release build script.
"""
import os
import sys
from shutil import rmtree
from toollib import sh, pjoin, get_ipdir, cd, sdists, buildwheels
def build_release():
# Get main ipython dir, this will raise if it doesn't pass some checks
ipdir = get_ipdir()
cd(ipdir)
# Build source and binary distros
sh(sdists)
buildwheels()
sh(' '.join([sys.executable, 'tools/retar.py', 'dist/*.gz']))
if __name__ == '__main__':
build_release()