Show More
@@ -15,9 +15,9 b' import zmq' | |||||
15 |
|
15 | |||
16 |
|
16 | |||
17 | if os.name == 'nt': |
|
17 | if os.name == 'nt': | |
18 |
if zmq.__version__ < '2.1 |
|
18 | if zmq.__version__ < '2.1.7': | |
19 |
raise ImportError(" |
|
19 | raise ImportError("IPython.parallel requires pyzmq/0MQ >= 2.1.7 on Windows, " | |
20 |
" |
|
20 | "and you appear to have %s"%zmq.__version__) | |
21 | elif zmq.__version__ < '2.1.4': |
|
21 | elif zmq.__version__ < '2.1.4': | |
22 | raise ImportError("IPython.parallel requires pyzmq/0MQ >= 2.1.4, you appear to have %s"%zmq.__version__) |
|
22 | raise ImportError("IPython.parallel requires pyzmq/0MQ >= 2.1.4, you appear to have %s"%zmq.__version__) | |
23 |
|
23 |
@@ -107,7 +107,7 b" have['pymongo'] = test_for('pymongo')" | |||||
107 | have['wx'] = test_for('wx') |
|
107 | have['wx'] = test_for('wx') | |
108 | have['wx.aui'] = test_for('wx.aui') |
|
108 | have['wx.aui'] = test_for('wx.aui') | |
109 | if os.name == 'nt': |
|
109 | if os.name == 'nt': | |
110 |
have['zmq'] = test_for('zmq', '2.1 |
|
110 | have['zmq'] = test_for('zmq', '2.1.7') | |
111 | else: |
|
111 | else: | |
112 | have['zmq'] = test_for('zmq', '2.1.4') |
|
112 | have['zmq'] = test_for('zmq', '2.1.4') | |
113 | have['qt'] = test_for('IPython.external.qt') |
|
113 | have['qt'] = test_for('IPython.external.qt') |
General Comments 0
You need to be logged in to leave comments.
Login now