##// END OF EJS Templates
Merge pull request #8462 from minrk/reenable-install...
Thomas Kluyver -
r21374:814ba33f merge
parent child Browse files
Show More
@@ -160,23 +160,6 b" setup_args['cmdclass'] = {"
160 'unsymlink': unsymlink,
160 'unsymlink': unsymlink,
161 }
161 }
162
162
163 ### Temporarily disable install while it's broken during the big split
164 from textwrap import dedent
165 from distutils.command.install import install
166
167 class DisabledInstall(install):
168 def run(self):
169 msg = dedent("""
170 While we are in the midst of The Big Split,
171 IPython cannot be installed from master.
172 You can use `pip install -e .` for an editable install,
173 which still works.
174 """)
175 print(msg, file=sys.stderr)
176 raise SystemExit(1)
177
178 setup_args['cmdclass']['install'] = DisabledInstall
179
180
163
181 #---------------------------------------------------------------------------
164 #---------------------------------------------------------------------------
182 # Handle scripts, dependencies, and setuptools specific things
165 # Handle scripts, dependencies, and setuptools specific things
General Comments 0
You need to be logged in to leave comments. Login now