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