##// END OF EJS Templates
disable install from master...
Min RK -
Show More
@@ -225,6 +225,24 b" setup_args['cmdclass'] = {"
225 'jsversion' : JavascriptVersion,
225 'jsversion' : JavascriptVersion,
226 }
226 }
227
227
228 ### Temporarily disable install while it's broken during the big split
229 from textwrap import dedent
230 from distutils.command.install import install
231
232 class DisabledInstall(install):
233 def run(self):
234 msg = dedent("""
235 While we are in the midst of The Big Split,
236 IPython cannot be installed from master.
237 You can use `pip install -e .` for an editable install,
238 which still works.
239 """)
240 print(msg, file=sys.stderr)
241 raise SystemExit(1)
242
243 setup_args['cmdclass']['install'] = DisabledInstall
244
245
228 #---------------------------------------------------------------------------
246 #---------------------------------------------------------------------------
229 # Handle scripts, dependencies, and setuptools specific things
247 # Handle scripts, dependencies, and setuptools specific things
230 #---------------------------------------------------------------------------
248 #---------------------------------------------------------------------------
General Comments 0
You need to be logged in to leave comments. Login now