Skip to content

Commit

Permalink
Hard dependency on IPython version 3 series
Browse files Browse the repository at this point in the history
  • Loading branch information
tdaff committed Sep 8, 2015
1 parent 628962e commit b2be223
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ the drop-down list in the notebook.
Changes for v0.2
================

* Version 0.2.11 is the last version to support IPython notebook version 3.
`pip` requirements enforce versions less than 4. Use a more recent version
to ensure compatibility with the Jupyter split.
* Support for PBS/Torque through ``qsub -I``.
* Tunnels are kept alive better, if something is not responding try waiting
20 seconds to see if a tunnel had dies. (Tunnels no longer depend on pyzmq,
Expand Down
2 changes: 1 addition & 1 deletion remote_ikernel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"""

__version__ = '0.2.10'
__version__ = '0.2.11'
RIK_PREFIX = 'rik_'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from distutils.core import setup

setup(name='remote_ikernel',
version='0.2.9',
version='0.2.11',
description='Running IPython kernels through batch queues',
long_description=open('README.rst').read(),
author='Tom Daff',
Expand All @@ -15,7 +15,7 @@
url='https://bitbucket.org/tdaff/remote_ikernel',
packages=['remote_ikernel'],
scripts=['bin/remote_ikernel'],
install_requires=['ipython', 'pexpect', 'tornado'],
install_requires=['ipython[notebook]<4', 'pexpect', 'tornado'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
Expand Down

0 comments on commit b2be223

Please sign in to comment.