Merge pull request #7694 from minrk/check-pyzmq

bump pyzmq version dependency to 13
This commit is contained in:
Matthias Bussonnier 2015-02-05 15:11:45 -08:00
commit ae37c5bb9d
3 changed files with 8 additions and 7 deletions

View File

@ -24,9 +24,9 @@ import threading
import webbrowser
# check for pyzmq 2.1.11
# check for pyzmq
from IPython.utils.zmqrelated import check_for_zmq
check_for_zmq('2.1.11', 'IPython.html')
check_for_zmq('13', 'IPython.html')
from jinja2 import Environment, FileSystemLoader

View File

@ -143,7 +143,7 @@ have['casperjs'] = is_cmd_found('casperjs')
have['phantomjs'] = is_cmd_found('phantomjs')
have['slimerjs'] = is_cmd_found('slimerjs')
min_zmq = (2,1,11)
min_zmq = (13,)
have['zmq'] = test_for('zmq.pyzmq_version_info', min_zmq, callback=lambda x: x())

View File

@ -246,15 +246,16 @@ setuptools_extra_args = {}
# setuptools requirements
pyzmq = 'pyzmq>=13'
extras_require = dict(
parallel = ['pyzmq>=2.1.11'],
qtconsole = ['pyzmq>=2.1.11', 'pygments'],
zmq = ['pyzmq>=2.1.11'],
parallel = [pyzmq],
qtconsole = [pyzmq, 'pygments'],
doc = ['Sphinx>=1.1', 'numpydoc'],
test = ['nose>=0.10.1', 'requests'],
terminal = [],
nbformat = ['jsonschema>=2.0'],
notebook = ['tornado>=4.0', 'pyzmq>=2.1.11', 'jinja2', 'pygments', 'mistune>=0.5'],
notebook = ['tornado>=4.0', pyzmq, 'jinja2', 'pygments', 'mistune>=0.5'],
nbconvert = ['pygments', 'jinja2', 'mistune>=0.3.1']
)