Skip to content

Commit

Permalink
Release 3.4.1 (#1269)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jonmmease authored Nov 9, 2018
1 parent 37ffef6 commit a8ae062
Show file tree
Hide file tree
Showing 10 changed files with 109 additions and 70 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.4.1] - 2018-11-09

### Updated
- Updated Plotly.js to version 1.42.5. See the
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1423----2018-11-06)
for more information.

### Fixed
- Fixed histogram binning with pandas `Series` or numpy array
(regression introduced in 3.4.0)
([#1257](https://github.com/plotly/plotly.py/issues/1257),
[plotly/plotly.js#3211](https://github.com/plotly/plotly.js/pull/3211))
- Fixed incorrect validation error on the `args` property of
`layout.updatemenu.Button()` when value is a `list` that starts with a `list`
([#1265](https://github.com/plotly/plotly.py/issues/1265))
- Fixed deadlock causing `plotly.io.write_image` to hang on Windows after
exporting more than ~25 images
([#1255](https://github.com/plotly/plotly.py/issues/1255))
- Fixed plot display error for `scattergl` trace with `mode='lines'` and
more than 100k points
([#1271](https://github.com/plotly/plotly.py/issues/1271))
- Fixed responsive resizing error with `iplot` in the classic notebook
([#1263](https://github.com/plotly/plotly.py/pull/1263))

## [3.4.0] - 2018-11-02

### Updated
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is

plotly.py may be installed using pip...
```
pip install plotly==3.4.0
pip install plotly==3.4.1
```

or conda.
```
conda install -c plotly plotly=3.4.0
conda install -c plotly plotly=3.4.1
```

### Jupyter Notebook Support
Expand Down Expand Up @@ -102,7 +102,7 @@ set NODE_OPTIONS=--max-old-space-size=4096
jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.38 --no-build
# FigureWidget support
jupyter labextension install plotlywidget@0.5.0 --no-build
jupyter labextension install plotlywidget@0.5.1 --no-build
# offline iplot support
jupyter labextension install @jupyterlab/plotly-extension@0.18 --no-build
Expand Down
92 changes: 46 additions & 46 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlywidget",
"version": "0.5.0",
"version": "0.5.1",
"description": "The plotly.py ipywidgets library",
"author": "The plotly.py team",
"license": "MIT",
Expand Down Expand Up @@ -31,7 +31,7 @@
"ify-loader": "^1.1.0"
},
"dependencies": {
"plotly.js": "1.42.3",
"plotly.js": "1.42.5",
"@jupyter-widgets/base": "^1.0.0",
"lodash": "^4.17.4"
},
Expand Down
2 changes: 1 addition & 1 deletion plotly/offline/_plotlyjs_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# DO NOT EDIT
# This file is generated by the updatebundle setup.py command
__plotlyjs_version__ = '1.42.3'
__plotlyjs_version__ = '1.42.5'
4 changes: 2 additions & 2 deletions plotly/package_data/plotly.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions plotly/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = '3.4.0'
__frontend_version__ = '^0.5.0'
__version__ = '3.4.1'
__frontend_version__ = '^0.5.1'


def stable_semver():
Expand Down
Loading

0 comments on commit a8ae062

Please sign in to comment.