##// END OF EJS Templates
add explicits imports on release tools
Matthias Bussonnier -
Show More
@@ -5,7 +5,7 b''
5 import os
5 import os
6 from shutil import rmtree
6 from shutil import rmtree
7
7
8 from toollib import *
8 from toollib import sh, pjoin, get_ipdir, cd, compile_tree, execfile, sdists, wheels
9
9
10 # Get main ipython dir, this will raise if it doesn't pass some checks
10 # Get main ipython dir, this will raise if it doesn't pass some checks
11 ipdir = get_ipdir()
11 ipdir = get_ipdir()
@@ -5,7 +5,11 b' This should ONLY be run at real release time.'
5 """
5 """
6 from __future__ import print_function
6 from __future__ import print_function
7
7
8 from toollib import *
8 import os
9 import sys
10
11 from toollib import (get_ipdir, pjoin, cd, execfile, version, sh, archive,
12 sdists, archive_user, archive_dir)
9 from gh_api import post_download
13 from gh_api import post_download
10
14
11 # Get main ipython dir, this will raise if it doesn't pass some checks
15 # Get main ipython dir, this will raise if it doesn't pass some checks
General Comments 0
You need to be logged in to leave comments. Login now