mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Merge pull request #7694 from minrk/check-pyzmq
bump pyzmq version dependency to 13
This commit is contained in:
commit
ae37c5bb9d
@ -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
|
||||
|
||||
|
@ -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())
|
||||
|
||||
|
9
setup.py
9
setup.py
@ -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']
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user