Show More
@@ -27,26 +27,6 b' Need to be updated:' | |||||
27 | As a reminder, IPython master has diverged from the 7.x branch, thus master may |
|
27 | As a reminder, IPython master has diverged from the 7.x branch, thus master may | |
28 | have more feature and API changes. |
|
28 | have more feature and API changes. | |
29 |
|
29 | |||
30 | Important changes: |
|
|||
31 |
|
||||
32 | - Fix compatibility with Sphinx 3+ :ghpull:`12235` |
|
|||
33 | - Remove deprecated matplotlib parameter usage, compatibility with matplotlib |
|
|||
34 | 3.3+ :`122250` |
|
|||
35 |
|
||||
36 | Misc Changes |
|
|||
37 |
|
||||
38 | - set ``.py`` extension when editing current buffer in vi/emacs. :ghpull:`12167` |
|
|||
39 | - support for unicode identifiers in ``?``/``??`` :ghpull:`12208` |
|
|||
40 | - add extra options to the ``Video`` Rich objects :ghpull:`12212` |
|
|||
41 | - add pretty-printing to SimpleNamespace :ghpull:`12230` |
|
|||
42 |
|
||||
43 | New Deprecation Warnings. |
|
|||
44 |
|
||||
45 | - Many object present in ``IPython.core.display`` should be imported from |
|
|||
46 | ``IPython.display`` by user and external libraries. Trying to import those |
|
|||
47 | from ``IPython.core.display`` will trigger a deprecation warning in IPython |
|
|||
48 | 7.14+ and _may_ raise an error in IPython 8+ |
|
|||
49 |
|
||||
50 | Backwards incompatible changes |
|
30 | Backwards incompatible changes | |
51 | ------------------------------ |
|
31 | ------------------------------ | |
52 |
|
32 |
@@ -2,6 +2,45 b'' | |||||
2 | 7.x Series |
|
2 | 7.x Series | |
3 | ============ |
|
3 | ============ | |
4 |
|
4 | |||
|
5 | .. _version 714: | |||
|
6 | ||||
|
7 | IPython 7.14 | |||
|
8 | ============ | |||
|
9 | ||||
|
10 | IPython 7.14 is a minor release that fix a couple of bugs and prepare | |||
|
11 | compatibility with new or future versions of some libraries. | |||
|
12 | ||||
|
13 | Important changes: | |||
|
14 | ------------------ | |||
|
15 | ||||
|
16 | - Fix compatibility with Sphinx 3+ :ghpull:`12235` | |||
|
17 | - Remove deprecated matplotlib parameter usage, compatibility with matplotlib | |||
|
18 | 3.3+ :`122250` | |||
|
19 | ||||
|
20 | Misc Changes | |||
|
21 | ------------ | |||
|
22 | ||||
|
23 | - set ``.py`` extension when editing current buffer in vi/emacs. :ghpull:`12167` | |||
|
24 | - support for unicode identifiers in ``?``/``??`` :ghpull:`12208` | |||
|
25 | - add extra options to the ``Video`` Rich objects :ghpull:`12212` | |||
|
26 | - add pretty-printing to ``SimpleNamespace`` :ghpull:`12230` | |||
|
27 | ||||
|
28 | Pending deprecated imports | |||
|
29 | -------------------------- | |||
|
30 | ||||
|
31 | Many object present in ``IPython.core.display`` are there for internal use only, | |||
|
32 | and should already been imported from ``IPython.display`` by users and external | |||
|
33 | libraries. Trying to import those from ``IPython.core.display`` is still possible | |||
|
34 | but will trigger a | |||
|
35 | deprecation warning in later versions of IPython and will become errors in the | |||
|
36 | future. | |||
|
37 | ||||
|
38 | This will simplify compatibility with other Python kernels (like Xeus-Python), | |||
|
39 | and simplify code base. | |||
|
40 | ||||
|
41 | ||||
|
42 | ||||
|
43 | ||||
5 | .. _version 713: |
|
44 | .. _version 713: | |
6 |
|
45 | |||
7 | IPython 7.13 |
|
46 | IPython 7.13 |
General Comments 0
You need to be logged in to leave comments.
Login now