Skip to content

Commit 4e3717e

Browse files
committed
Merge branch 'master' into imshow-xarray
2 parents 70def8e + 587075c commit 4e3717e

File tree

102 files changed

+3730
-3456
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+3730
-3456
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ jobs:
339339
command: |
340340
cd packages/python/plotly
341341
locale
342-
tox -e py37-core -- -a '!nodev'
342+
tox -e py37-core -- -k 'not nodev'
343343
no_output_timeout: 20m
344344
- run:
345345
name: Commit

CHANGELOG.md

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,41 @@
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+
15+
## [4.5.2] - 2020-02-24
16+
17+
### Fixed
18+
19+
- Fix build errors in JupyterLab extension by pinning version of `@types/plotly.js` [#2223](https://github.com/plotly/plotly.py/issues/2223)
20+
21+
## [4.5.1] - 2020-02-19
22+
23+
### Updated
24+
25+
- 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.
26+
27+
### Fixed
28+
29+
- `update_annotations`, `update_shapes` and `update_layout_images` now no longer require the `patch` argument, as per the docstring [#2167](https://github.com/plotly/plotly.py/issues/2167)
30+
- `px.defaults` no longer accepts arbitrary keys [#2168](https://github.com/plotly/plotly.py/issues/2168)
31+
- better error message when `pandas` is not installed [#2125](https://github.com/plotly/plotly.py/issues/2125)
32+
- support columns of numerical type in `path` argument of `px.sunburst`/`px.treemap` and add values of `color` column in hoverlabel for `px.sunburst`/`px.treemap` [#2133](https://github.com/plotly/plotly.py/pull/2133)
33+
34+
35+
536
## [4.5.0] - 2020-01-22
637

738
### Updated
8-
- Updated Plotly.js to version 1.52.1. See the
9-
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/v1.52.0/CHANGELOG.md#1520----2020-01-08)
10-
for more information on numerous new attribute and bug fixes.
39+
- Updated Plotly.js to version 1.52.1. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/v1.52.0/CHANGELOG.md#1520----2020-01-08) for more information on numerous new attribute and bug fixes.
1140
- Plotly Express uses the new `legend.title` attribute and so now has shorter trace `name`s [#2051](https://github.com/plotly/plotly.py/pull/2051)
1241
- The heuristic used by `px.parallel_categories` to determine which columns of the data frame to draw has been changed and made more configurable with the `dimensions_max_cardinality` argument [#2102](https://github.com/plotly/plotly.py/pull/2102)
1342
- The `simple_white` colorbar styling has been streamlined [#2110](https://github.com/plotly/plotly.py/pull/2110)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
## Quickstart
2828

29-
`pip install plotly==4.5.0`
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.0
78+
pip install plotly==4.5.3
7979
```
8080

8181
or conda.
8282

8383
```
84-
conda install -c plotly plotly=4.5.0
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].0 --no-build
131+
jupyter labextension install [email protected].3 --no-build
132132
133133
# and jupyterlab renderer support
134-
jupyter labextension install [email protected].0 --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

binder/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
jupytext
2-
plotly==4.5.0
2+
plotly==4.5.1
33
jupyter
44
notebook
55
pandas==0.23.0

0 commit comments

Comments
 (0)