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.
This commit is contained in:
MinRK 2011-04-21 12:10:26 -07:00
parent 7eefed1d6b
commit f32e2bb944

View File

@ -106,7 +106,10 @@ have['pexpect'] = test_for('pexpect')
have['pymongo'] = test_for('pymongo') have['pymongo'] = test_for('pymongo')
have['wx'] = test_for('wx') have['wx'] = test_for('wx')
have['wx.aui'] = test_for('wx.aui') 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') have['qt'] = test_for('IPython.external.qt')
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------