##// END OF EJS Templates
Backport PR #12514: prepare release notes
Matthias Bussonnier -
Show More
@@ -37,8 +37,8 b' install:'
37 - pip install pip --upgrade
37 - pip install pip --upgrade
38 - pip install setuptools --upgrade
38 - pip install setuptools --upgrade
39 - if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
39 - if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
40 echo "for the tiem being still test on 3.6";
40 echo "for the time being still test on 3.6";
41 sed -i bkp s/7/6/g setup.py;
41 sed -ibkp s/7/6/g setup.py;
42 git diff;
42 git diff;
43 fi
43 fi
44 - pip install -e file://$PWD#egg=ipython[test] --upgrade
44 - pip install -e file://$PWD#egg=ipython[test] --upgrade
@@ -154,7 +154,7 b' class PylabMagics(Magics):'
154
154
155 gui, backend, clobbered = self.shell.enable_pylab(args.gui, import_all=import_all)
155 gui, backend, clobbered = self.shell.enable_pylab(args.gui, import_all=import_all)
156 self._show_matplotlib_backend(args.gui, backend)
156 self._show_matplotlib_backend(args.gui, backend)
157 print ("Populating the interactive namespace from numpy and matplotlib")
157 print("Populating the interactive namespace from numpy and matplotlib")
158 if clobbered:
158 if clobbered:
159 warn("pylab import has clobbered these variables: %s" % clobbered +
159 warn("pylab import has clobbered these variables: %s" % clobbered +
160 "\n`%matplotlib` prevents importing * from pylab and numpy"
160 "\n`%matplotlib` prevents importing * from pylab and numpy"
@@ -29,6 +29,8 b' contribute to the project.'
29
29
30 Starting with IPython 7.10, IPython follows `NEP 29 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`_
30 Starting with IPython 7.10, IPython follows `NEP 29 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`_
31
31
32 **IPython 7.17+** requires Python version 3.7 and above.
33
32 **IPython 7.10+** requires Python version 3.6 and above.
34 **IPython 7.10+** requires Python version 3.6 and above.
33
35
34 **IPython 7.0** requires Python version 3.5 and above.
36 **IPython 7.0** requires Python version 3.5 and above.
@@ -2,6 +2,21 b''
2 7.x Series
2 7.x Series
3 ============
3 ============
4
4
5 .. _version 718:
6
7 IPython 7.18
8 ============
9
10 IPython 7.18 is a minor release that mostly contains bugfixes.
11
12 - ``CRLF`` is now handled by magics my default; solving some issues due to copy
13 pasting on windows. :ghpull:`12475`
14
15 - Requirin pexpect ``>=4.3`` as we are Python 3.7+ only and earlier version of
16 pexpect will be incompatible. :ghpull:`12510`
17
18
19
5 .. _version 717:
20 .. _version 717:
6
21
7 IPython 7.17
22 IPython 7.17
General Comments 0
You need to be logged in to leave comments. Login now