##// END OF EJS Templates
Small fixes so release builds.
Fernando Perez -
Show More
@@ -22,6 +22,7 b" if __name__ == '__main__':"
22 r'\.attic',
22 r'\.attic',
23 ]
23 ]
24 docwriter.module_skip_patterns += [ r'\.FakeModule',
24 docwriter.module_skip_patterns += [ r'\.FakeModule',
25 r'\.gui.wx.wxIPython',
25 r'\.cocoa',
26 r'\.cocoa',
26 r'\.ipdoctest',
27 r'\.ipdoctest',
27 r'\.Gnuplot',
28 r'\.Gnuplot',
@@ -2,6 +2,7 b''
2 """Wrapper to run setup.py using setuptools."""
2 """Wrapper to run setup.py using setuptools."""
3
3
4 import os
4 import os
5 import shutil
5 import sys
6 import sys
6
7
7 # now, import setuptools and call the actual setup
8 # now, import setuptools and call the actual setup
@@ -10,4 +11,8 b" execfile('setup.py')"
10
11
11 # clean up the junk left around by setuptools
12 # clean up the junk left around by setuptools
12 if "develop" not in sys.argv:
13 if "develop" not in sys.argv:
13 os.unlink('ipython.egg-info')
14 egg_info = 'ipython.egg-info'
15 if os.path.isdir(egg_info):
16 shutil.rmtree(egg_info)
17 else:
18 os.unlink(egg_info)
@@ -175,4 +175,3 b' def check_for_simplejson():'
175 print_status("simplejson","yes")
175 print_status("simplejson","yes")
176 return True
176 return True
177
177
178 No newline at end of file
@@ -32,3 +32,4 b' c("python setup.py bdist_wininst --install-script=ipython_win_post_install.py")'
32
32
33 # Change name so retarded Vista runs the installer correctly
33 # Change name so retarded Vista runs the installer correctly
34 c("rename 's/linux-i686/win32-setup/' dist/*.exe")
34 c("rename 's/linux-i686/win32-setup/' dist/*.exe")
35 c("rename 's/linux-x86_64/win32-setup/' dist/*.exe")
General Comments 0
You need to be logged in to leave comments. Login now