Skip to content

Commit 53e8cbf

Browse files
release 5.4.0
1 parent 20b797c commit 53e8cbf

File tree

6 files changed

+9
-19
lines changed

6 files changed

+9
-19
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## UNRELEASED
5+
## [5.4.0] - 2021-11-15
66

77
### Fixed
88
- Fixed error when serializing dict with mix of string and non-string keys [#3380](https://github.com/plotly/plotly.py/issues/3380)

Diff for: README.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,9 @@
3131
</tr>
3232
</table>
3333

34-
## Data Science Workspaces
35-
36-
Our recommended IDE for Plotly’s Python graphing library is Dash Enterprise’s [Data Science Workspaces](https://plotly.com/dash/workspaces/), which has both Jupyter notebook and Python code file support.
37-
3834
## Quickstart
3935

40-
`pip install plotly==5.3.1`
36+
`pip install plotly==5.4.0`
4137

4238
Inside [Jupyter](https://jupyter.org/install) (installable with `pip install "jupyterlab>=3" "ipywidgets>=7.6"`):
4339

@@ -86,13 +82,13 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is
8682
plotly.py may be installed using pip...
8783

8884
```
89-
pip install plotly==5.3.1
85+
pip install plotly==5.4.0
9086
```
9187

9288
or conda.
9389

9490
```
95-
conda install -c plotly plotly=5.3.1
91+
conda install -c plotly plotly=5.4.0
9692
```
9793

9894
### JupyterLab Support
@@ -114,7 +110,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**,
114110

115111
```
116112
# JupyterLab 2.x renderer support
117-
jupyter labextension install jupyterlab-plotly@5.3.1 @jupyter-widgets/jupyterlab-manager
113+
jupyter labextension install jupyterlab-plotly@5.4.0 @jupyter-widgets/jupyterlab-manager
118114
```
119115

120116
Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab.

Diff for: doc/python/getting-started.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,6 @@ $ conda install -c plotly plotly=5.3.1
6868
```
6969
This package contains everything you need to write figures to standalone HTML files.
7070

71-
You'll also likely want `dash` for adding widgets such as sliders, buttons, and dropdowns to your charts (see more below):
72-
73-
```
74-
$ pip install dash
75-
```
76-
7771
> Note: **No internet connection, account, or payment is required to use plotly.py.** Prior to version 4, this library could operate in either an "online" or "offline" mode. The documentation tended to emphasize the online mode, where graphs get published to the Chart Studio web service. In version 4, all "online" functionality was removed from the `plotly` package and is now available as the separate, optional, `chart-studio` package (See below). **plotly.py version 4 is "offline" only, and does not include any functionality for uploading figures or data to cloud services.**
7872
7973

@@ -111,7 +105,7 @@ or `conda`:
111105
$ conda install "jupyterlab>=3" "ipywidgets>=7.6"
112106
```
113107

114-
You'll ned `jupyter-dash` to add widgets such as sliders, dropdowns, and buttons to Plotly charts in JupyterLab.
108+
You'll need `jupyter-dash` to add widgets such as sliders, dropdowns, and buttons to Plotly charts in JupyterLab.
115109

116110
Install [`jupyter-dash`](https://github.com/plotly/jupyter-dash) using `pip`:
117111

Diff for: packages/javascript/jupyterlab-plotly/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: packages/javascript/jupyterlab-plotly/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-plotly",
3-
"version": "5.3.1",
3+
"version": "5.4.0",
44
"description": "The plotly Jupyter extension",
55
"author": "The plotly.py team",
66
"license": "MIT",

Diff for: packages/python/plotly/plotly/_widget_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# for automated dev builds
33
#
44
# It is edited by hand prior to official releases
5-
__frontend_version__ = "^5.3.1"
5+
__frontend_version__ = "^5.4.0"

0 commit comments

Comments
 (0)