Skip to content

Commit a8ae062

Browse files
authored
Release 3.4.1 (#1269)
* quiet pip install in conda packaging to see if it helps avoid circleci build errorerror: [Errno 11] Resource temporarily unavailable. Running setup.py install for plotly: finished with status 'error' * Update Plotly.js to 1.42.5 * Update CHANGELOG with new fixes and new plotly.js version * Bump plotly.py version to 3.4.1 and plotlywidget to 0.5.1
1 parent 37ffef6 commit a8ae062

File tree

10 files changed

+109
-70
lines changed

10 files changed

+109
-70
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
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+
## [3.4.1] - 2018-11-09
6+
7+
### Updated
8+
- Updated Plotly.js to version 1.42.5. See the
9+
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1423----2018-11-06)
10+
for more information.
11+
12+
### Fixed
13+
- Fixed histogram binning with pandas `Series` or numpy array
14+
(regression introduced in 3.4.0)
15+
([#1257](https://github.com/plotly/plotly.py/issues/1257),
16+
[plotly/plotly.js#3211](https://github.com/plotly/plotly.js/pull/3211))
17+
- Fixed incorrect validation error on the `args` property of
18+
`layout.updatemenu.Button()` when value is a `list` that starts with a `list`
19+
([#1265](https://github.com/plotly/plotly.py/issues/1265))
20+
- Fixed deadlock causing `plotly.io.write_image` to hang on Windows after
21+
exporting more than ~25 images
22+
([#1255](https://github.com/plotly/plotly.py/issues/1255))
23+
- Fixed plot display error for `scattergl` trace with `mode='lines'` and
24+
more than 100k points
25+
([#1271](https://github.com/plotly/plotly.py/issues/1271))
26+
- Fixed responsive resizing error with `iplot` in the classic notebook
27+
([#1263](https://github.com/plotly/plotly.py/pull/1263))
28+
529
## [3.4.0] - 2018-11-02
630

731
### Updated

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is
5454

5555
plotly.py may be installed using pip...
5656
```
57-
pip install plotly==3.4.0
57+
pip install plotly==3.4.1
5858
```
5959

6060
or conda.
6161
```
62-
conda install -c plotly plotly=3.4.0
62+
conda install -c plotly plotly=3.4.1
6363
```
6464

6565
### Jupyter Notebook Support
@@ -102,7 +102,7 @@ set NODE_OPTIONS=--max-old-space-size=4096
102102
jupyter labextension install @jupyter-widgets/[email protected] --no-build
103103
104104
# FigureWidget support
105-
jupyter labextension install [email protected].0 --no-build
105+
jupyter labextension install [email protected].1 --no-build
106106
107107
# offline iplot support
108108
jupyter labextension install @jupyterlab/[email protected] --no-build

js/package-lock.json

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

js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotlywidget",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "The plotly.py ipywidgets library",
55
"author": "The plotly.py team",
66
"license": "MIT",
@@ -31,7 +31,7 @@
3131
"ify-loader": "^1.1.0"
3232
},
3333
"dependencies": {
34-
"plotly.js": "1.42.3",
34+
"plotly.js": "1.42.5",
3535
"@jupyter-widgets/base": "^1.0.0",
3636
"lodash": "^4.17.4"
3737
},

plotly/offline/_plotlyjs_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# DO NOT EDIT
22
# This file is generated by the updatebundle setup.py command
3-
__plotlyjs_version__ = '1.42.3'
3+
__plotlyjs_version__ = '1.42.5'

plotly/package_data/plotly.min.js

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

plotly/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
__version__ = '3.4.0'
2-
__frontend_version__ = '^0.5.0'
1+
__version__ = '3.4.1'
2+
__frontend_version__ = '^0.5.1'
33

44

55
def stable_semver():

0 commit comments

Comments
 (0)