You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/python/v6-changes.md
+25-4Lines changed: 25 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ jupyter:
20
20
name: python
21
21
nbconvert_exporter: python
22
22
pygments_lexer: ipython3
23
-
version: 3.9.16
23
+
version: 3.11.10
24
24
plotly:
25
25
description: Guide to changes in version 6 of Plotly.py and how to migrate from
26
26
version 5
@@ -39,14 +39,24 @@ This page outlines the changes in Plotly.py version 6 and cases where you may ne
39
39
<!-- #region -->
40
40
## Jupyter Notebook Support
41
41
42
+
Versions of Jupyter Notebook earlier than version 7 are no longer supported. To upgrade to the latest Jupyter Notebook:
43
+
44
+
```
45
+
pip install notebook -upgrade
46
+
```
47
+
48
+
## Processing NumPy and Pandas Series
49
+
50
+
Plotly.py now takes advantage of recent changes in how Plotly.js handles typed arrays for improved performance. See the [performance page](python/performance/) for more details.
51
+
52
+
42
53
## Removed Attributes
43
54
44
55
The following attributes have been removed in Plotly.py 6.
45
56
46
-
### `layout.titlefont`
47
-
48
-
`layout.titlefont` as shown in the following example has been removed.
57
+
### `titlefont`
49
58
59
+
The `titlefont` attribute, shown in the following example on `layout`, has been removed.
0 commit comments