From f32e2bb944464fbe1efa3ae2eaaea2f55f87e9fd Mon Sep 17 00:00:00 2001 From: MinRK Date: Thu, 21 Apr 2011 12:10:26 -0700 Subject: [PATCH] depend on pyzmq-2.1dev on Windows This is a temporary dependency, and should be changed to the next release of pyzmq when it arrives. --- IPython/testing/iptest.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index f3365ff8f..ba7e2f7c4 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -106,7 +106,10 @@ have['pexpect'] = test_for('pexpect') have['pymongo'] = test_for('pymongo') have['wx'] = test_for('wx') have['wx.aui'] = test_for('wx.aui') -have['zmq'] = test_for('zmq', '2.1.4') +if os.name == 'nt': + have['zmq'] = test_for('zmq', '2.1dev') +else: + have['zmq'] = test_for('zmq', '2.1.4') have['qt'] = test_for('IPython.external.qt') #-----------------------------------------------------------------------------