Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport PR #12514: : prepare release notes #12519

Merged
merged 1 commit into from Aug 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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