##// END OF EJS Templates
pyreadline dependency pushed to 1.7.1 for all versions of windows. Also, solves an issue that has been observed when IPython is used with some older versions of pyreadline.
Nathan Rice -
Show More
@@ -238,10 +238,11 b" if 'setuptools' in sys.modules:"
238 if not setupext.check_for_readline():
238 if not setupext.check_for_readline():
239 if sys.platform == 'darwin':
239 if sys.platform == 'darwin':
240 requires.append('readline')
240 requires.append('readline')
241 elif sys.platform.startswith('win') and sys.maxsize < 2**32:
241 elif sys.platform.startswith('win'):
242 # only require pyreadline on 32b Windows, due to 64b bug in pyreadline:
242 # Pyreadline 64 bit windows issue solved in versions >=1.7.1
243 # https://bugs.launchpad.net/pyreadline/+bug/787574
243 # Also solves issues with some older versions of pyreadline that
244 requires.append('pyreadline')
244 # satisfy the unconstrained depdendency.
245 requires.append('pyreadline>=1.7.1')
245 else:
246 else:
246 pass
247 pass
247 # do we want to install readline here?
248 # do we want to install readline here?
General Comments 0
You need to be logged in to leave comments. Login now