##// END OF EJS Templates
fix long description
fix long description

File last commit:

r27317:2c629bd7
r27317:2c629bd7
Show More
build_release
23 lines | 543 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()
# don't try to change, xz, bz2 deprecated.
sh(' '.join([sys.executable, 'tools/retar.py', 'dist/*.gz']))
if __name__ == '__main__':
build_release()