##// END OF EJS Templates
Merge pull request #12525 from ipython/revert-12488-auto-backport-of-pr-12207-on-7.x...
Merge pull request #12525 from ipython/revert-12488-auto-backport-of-pr-12207-on-7.x Revert "Backport PR #12207 on branch 7.x (Bump jedi to at least 0.16.0 and fix deprecated function usage)"

File last commit:

r25778:6cf72b2a
r25994:6e65c1af merge
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()