diff --git a/tools/build_release b/tools/build_release index 1c5246b..e5bf316 100755 --- a/tools/build_release +++ b/tools/build_release @@ -5,7 +5,7 @@ import os from shutil import rmtree -from toollib import * +from toollib import sh, pjoin, get_ipdir, cd, compile_tree, execfile, sdists, wheels # Get main ipython dir, this will raise if it doesn't pass some checks ipdir = get_ipdir() diff --git a/tools/release b/tools/release index 78f1805..9202874 100755 --- a/tools/release +++ b/tools/release @@ -5,7 +5,11 @@ This should ONLY be run at real release time. """ from __future__ import print_function -from toollib import * +import os +import sys + +from toollib import (get_ipdir, pjoin, cd, execfile, version, sh, archive, + sdists, archive_user, archive_dir) from gh_api import post_download # Get main ipython dir, this will raise if it doesn't pass some checks