Show More
@@ -20,7 +20,7 b" def check_for_zmq(minimum_version, module='IPython.zmq'):" | |||||
20 |
|
20 | |||
21 | pyzmq_version = zmq.__version__ |
|
21 | pyzmq_version = zmq.__version__ | |
22 |
|
22 | |||
23 | if V(pyzmq_version) < V(minimum_version): |
|
23 | if 'dev' not in pyzmq_version and V(pyzmq_version) < V(minimum_version): | |
24 | raise ImportError("%s requires pyzmq >= %s, but you have %s"%( |
|
24 | raise ImportError("%s requires pyzmq >= %s, but you have %s"%( | |
25 | module, minimum_version, pyzmq_version)) |
|
25 | module, minimum_version, pyzmq_version)) | |
26 |
|
26 |
General Comments 0
You need to be logged in to leave comments.
Login now