Skip to content

Commit c342af9

Browse files
release 4.5.3
1 parent 024d09a commit c342af9

File tree

8 files changed

+1010
-999
lines changed

8 files changed

+1010
-999
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
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+
## [4.5.3] - 2020-03-05
6+
7+
### Updated
8+
9+
- Removed development dependency on `nose` testing framework [#2217](https://github.com/plotly/plotly.py/pull/2217)
10+
11+
### Fixed
12+
13+
- JupyterLab extension now compatible with JupyterLab 2.0 [#2245](https://github.com/plotly/plotly.py/pull/2245) with thanks to [@consideRatio](https://github.com/consideRatio) for the contribution!
14+
515
## [4.5.2] - 2020-02-24
616

717
### Fixed
@@ -11,6 +21,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1121
## [4.5.1] - 2020-02-19
1222

1323
### Updated
24+
1425
- Updated Plotly.js to version 1.52.2. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/releases/tag/v1.52.2) for more information on bug fixes.
1526

1627
### Fixed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
## Quickstart
2828

29-
`pip install plotly==4.5.2`
29+
`pip install plotly==4.5.3`
3030

3131
Inside [Jupyter notebook](https://jupyter.org/install) (installable with `pip install "notebook>=5.3" "ipywidgets>=7.2"`):
3232

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

7777
```
78-
pip install plotly==4.5.2
78+
pip install plotly==4.5.3
7979
```
8080

8181
or conda.
8282

8383
```
84-
conda install -c plotly plotly=4.5.2
84+
conda install -c plotly plotly=4.5.3
8585
```
8686

8787
### Jupyter Notebook Support
@@ -128,10 +128,10 @@ set NODE_OPTIONS=--max-old-space-size=4096
128128
jupyter labextension install @jupyter-widgets/[email protected] --no-build
129129
130130
# FigureWidget support
131-
jupyter labextension install [email protected].2 --no-build
131+
jupyter labextension install [email protected].3 --no-build
132132
133133
# and jupyterlab renderer support
134-
jupyter labextension install [email protected].2 --no-build
134+
jupyter labextension install [email protected].3 --no-build
135135
136136
# Build extensions (must be done to activate extensions since --no-build is used above)
137137
jupyter lab build

doc/python/getting-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ Thanks to deep integration with the [orca](https://github.com/plotly/orca) image
4949
plotly.py may be installed using pip...
5050

5151
```
52-
$ pip install plotly==4.5.2
52+
$ pip install plotly==4.5.3
5353
```
5454

5555
or conda.
5656

5757
```
58-
$ conda install -c plotly plotly=4.5.2
58+
$ conda install -c plotly plotly=4.5.3
5959
```
6060

6161
This package contains everything you need to write figures to standalone HTML files.
@@ -144,10 +144,10 @@ set NODE_OPTIONS=--max-old-space-size=4096
144144
jupyter labextension install @jupyter-widgets/[email protected] --no-build
145145
146146
# jupyterlab renderer support
147-
jupyter labextension install [email protected].2 --no-build
147+
jupyter labextension install [email protected].3 --no-build
148148
149149
# FigureWidget support
150-
jupyter labextension install [email protected].2 --no-build
150+
jupyter labextension install [email protected].3 --no-build
151151
152152
# Build extensions (must be done to activate extensions since --no-build is used above)
153153
jupyter lab build

0 commit comments

Comments
 (0)