##// END OF EJS Templates
adjust dependency check for gnureadline on OS X...
MinRK -
Show More
@@ -279,7 +279,8 b' for deps in extras_require.values():'
279 extras_require['all'] = everything
279 extras_require['all'] = everything
280 install_requires = []
280 install_requires = []
281 if sys.platform == 'darwin':
281 if sys.platform == 'darwin':
282 install_requires.append('gnureadline')
282 if any(arg.startswith('bdist') for arg in sys.argv) or not setupext.check_for_readline():
283 install_requires.append('gnureadline')
283 elif sys.platform.startswith('win'):
284 elif sys.platform.startswith('win'):
284 # Pyreadline has unicode and Python 3 fixes in 2.0
285 # Pyreadline has unicode and Python 3 fixes in 2.0
285 install_requires.append('pyreadline>=2.0')
286 install_requires.append('pyreadline>=2.0')
General Comments 0
You need to be logged in to leave comments. Login now