From cf9b16d19db4ba06ef02601d30731316e4832d92 Mon Sep 17 00:00:00 2001 From: MinRK Date: Fri, 8 Apr 2011 15:27:53 -0700 Subject: [PATCH] fix pyzmq version check for testing IPython.parallel --- IPython/testing/iptest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 56255a3c7..e88781540 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -104,7 +104,7 @@ have['curses'] = test_for('_curses') have['wx'] = test_for('wx') have['wx.aui'] = test_for('wx.aui') have['pexpect'] = test_for('pexpect') -have['zmq'] = test_for('zmq', '2.0.10') +have['zmq'] = test_for('zmq', '2.1.4') have['pymongo'] = test_for('pymongo') #-----------------------------------------------------------------------------