From 156318e9429afef0bdc49c0b436a1671ad23aeb6 2014-01-22 00:26:36 From: Thomas Kluyver Date: 2014-01-22 00:26:36 Subject: [PATCH] Remove some leftover traces of irunner --- diff --git a/docs/source/install/install.rst b/docs/source/install/install.rst index 2218098..611c766 100644 --- a/docs/source/install/install.rst +++ b/docs/source/install/install.rst @@ -190,7 +190,7 @@ get. These are: * readline (for command line editing, tab completion, etc.) * nose (to run the IPython test suite) -* pexpect (to use things like irunner) +* pexpect If you are comfortable installing these things yourself, have at it, otherwise read on for more details. @@ -265,21 +265,17 @@ iptest command: pexpect ------- -The pexpect_ package is used in IPython's :command:`irunner` script, as well as -for managing subprocesses. IPython now includes a version of pexpect in -:mod:`IPython.external`, but if you have installed pexpect, IPython will use +The pexpect_ package is used +for managing subprocesses. IPython now includes a version of Pexpect in +:mod:`IPython.external`, but if you have installed Pexpect, IPython will use that instead. On Unix platforms (including OS X), just do: .. code-block:: bash $ pip install pexpect - -.. note:: - - On Python 3, you should actually install :mod:`pexpect-u`, - a unicode-safe fork of pexpect. -Windows users are out of luck as pexpect does not run there. +Pexpect doesn't work on Windows, and we use other APIs for controlling +subprocesses. Dependencies for IPython.parallel (parallel computing) ====================================================== diff --git a/scripts/ipython_win_post_install.py b/scripts/ipython_win_post_install.py index 1604ff3..bd7e3b1 100755 --- a/scripts/ipython_win_post_install.py +++ b/scripts/ipython_win_post_install.py @@ -83,7 +83,6 @@ def install(): 'ipcontroller', 'ipengine', 'ipcluster', - 'irunner', ] programs = [suffix(p) for p in programs] scripts = pjoin(sys.prefix, 'scripts') diff --git a/setup.py b/setup.py index eb270f1..5725596 100755 --- a/setup.py +++ b/setup.py @@ -183,9 +183,6 @@ if len(sys.argv) >= 2 and sys.argv[1] in ('sdist','bdist_rpm'): ['docs/man/ipython.1'], 'cd docs/man && gzip -9c ipython.1 > ipython.1.gz'), - ('docs/man/irunner.1.gz', - ['docs/man/irunner.1'], - 'cd docs/man && gzip -9c irunner.1 > irunner.1.gz'), ]