Skip to content

Commit

Permalink
Merge pull request #12519 from Carreau/auto-backport-of-pr-12514-on-7.x
Browse files Browse the repository at this point in the history
Backport PR #12514: : prepare release notes
  • Loading branch information
Carreau committed Aug 28, 2020
2 parents 49d4033 + 24ed0b8 commit 2e36cb9
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -37,8 +37,8 @@ install:
- pip install pip --upgrade
- pip install setuptools --upgrade
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
echo "for the tiem being still test on 3.6";
sed -i bkp s/7/6/g setup.py;
echo "for the time being still test on 3.6";
sed -ibkp s/7/6/g setup.py;
git diff;
fi
- pip install -e file://$PWD#egg=ipython[test] --upgrade
Expand Down
2 changes: 1 addition & 1 deletion IPython/core/magics/pylab.py
Expand Up @@ -154,7 +154,7 @@ def pylab(self, line=''):

gui, backend, clobbered = self.shell.enable_pylab(args.gui, import_all=import_all)
self._show_matplotlib_backend(args.gui, backend)
print ("Populating the interactive namespace from numpy and matplotlib")
print("Populating the interactive namespace from numpy and matplotlib")
if clobbered:
warn("pylab import has clobbered these variables: %s" % clobbered +
"\n`%matplotlib` prevents importing * from pylab and numpy"
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Expand Up @@ -29,6 +29,8 @@ contribute to the project.

Starting with IPython 7.10, IPython follows `NEP 29 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`_

**IPython 7.17+** requires Python version 3.7 and above.

**IPython 7.10+** requires Python version 3.6 and above.

**IPython 7.0** requires Python version 3.5 and above.
Expand Down
15 changes: 15 additions & 0 deletions docs/source/whatsnew/version7.rst
Expand Up @@ -2,6 +2,21 @@
7.x Series
============

.. _version 718:

IPython 7.18
============

IPython 7.18 is a minor release that mostly contains bugfixes.

- ``CRLF`` is now handled by magics my default; solving some issues due to copy
pasting on windows. :ghpull:`12475`

- Requirin pexpect ``>=4.3`` as we are Python 3.7+ only and earlier version of
pexpect will be incompatible. :ghpull:`12510`



.. _version 717:

IPython 7.17
Expand Down

0 comments on commit 2e36cb9

Please sign in to comment.