##// END OF EJS Templates
Merge pull request #13212 from python-pitfalls/master...
Merge pull request #13212 from python-pitfalls/master removed a name shadowing pitfall

File last commit:

r25769:36ef3227
r26942:65b80ee4 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()