##// END OF EJS Templates
Depend on gnureadline when building binary wheel or setupext.check_for_readline() fails...
Peter Odding -
Show More
@@ -289,7 +289,7 b' install_requires = []'
289 289
290 290 # add readline
291 291 if sys.platform == 'darwin':
292 if not setupext.check_for_readline():
292 if 'bdist_wheel' in sys.argv[1:] or not setupext.check_for_readline():
293 293 install_requires.append('gnureadline')
294 294 elif sys.platform.startswith('win'):
295 295 extras_require['terminal'].append('pyreadline>=2.0')
General Comments 0
You need to be logged in to leave comments. Login now