Skip to content

Commit e026ef5

Browse files
bump versions for 4.7.1
1 parent 580768c commit e026ef5

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
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.7.1] - ???
5+
## [4.7.1] - 2020-05-08
66

77
### Fixed
88

9-
- Fix `AttributeError: module 'plotly.graph_objs' has no attribute 'FigureWidget'` exception on `from plotly.graph_objs import *` when `ipywidgets` is not installed. Error also occurred when importing `plotly.figure_factor`. It is now possible to import `plotly.graph_objs.FigureWidget` when `ipywidgets` is not installed, and an informative `ImportError` exception will be raised in the `FigureWidget` constructor ([#2443](https://github.com/plotly/plotly.py/issues/2443), [#1111](https://github.com/plotly/plotly.py/issues/1111)).
9+
- Fix `AttributeError: module 'plotly.graph_objs' has no attribute 'FigureWidget'` exception on `from plotly.graph_objs import *` when `ipywidgets` is not installed. Error also occurred when importing `plotly.figure_factor`. It is now possible to import `plotly.graph_objs.FigureWidget` when `ipywidgets` is not installed, and an informative `ImportError` exception will be raised in the `FigureWidget` constructor ([#2443](https://github.com/plotly/plotly.py/issues/2443), [#1111](https://github.com/plotly/plotly.py/issues/1111)).
1010
- Fix `TypeError: unhashable type: 'Template'` during `Figure` construction when `plotly.io.templates.default` is set to a `Template` object rather than a string.
1111

1212

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
## Quickstart
3535

36-
`pip install plotly==4.7.0`
36+
`pip install plotly==4.7.1`
3737

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

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

8484
```
85-
pip install plotly==4.7.0
85+
pip install plotly==4.7.1
8686
```
8787

8888
or conda.
8989

9090
```
91-
conda install -c plotly plotly=4.7.0
91+
conda install -c plotly plotly=4.7.1
9292
```
9393

9494
### Jupyter Notebook Support
@@ -125,10 +125,10 @@ Then run the following commands to install the required JupyterLab extensions (n
125125

126126
```
127127
# Basic JupyterLab renderer support
128-
jupyter labextension install [email protected].0
128+
jupyter labextension install [email protected].1
129129
130130
# OPTIONAL: Jupyter widgets extension for FigureWidget support
131-
jupyter labextension install @jupyter-widgets/jupyterlab-manager [email protected].0
131+
jupyter labextension install @jupyter-widgets/jupyterlab-manager [email protected].1
132132
```
133133

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

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.7.0
52+
$ pip install plotly==4.7.1
5353
```
5454

5555
or conda.
5656

5757
```
58-
$ conda install -c plotly plotly=4.7.0
58+
$ conda install -c plotly plotly=4.7.1
5959
```
6060

6161
This package contains everything you need to write figures to standalone HTML files.
@@ -135,10 +135,10 @@ Then run the following commands to install the required JupyterLab extensions (n
135135

136136
```
137137
# JupyterLab renderer support
138-
jupyter labextension install [email protected].0
138+
jupyter labextension install [email protected].1
139139
140140
# OPTIONAL: Jupyter widgets extension
141-
jupyter labextension install @jupyter-widgets/jupyterlab-manager [email protected].0
141+
jupyter labextension install @jupyter-widgets/jupyterlab-manager [email protected].1
142142
```
143143

144144
These packages contain everything you need to run JupyterLab...

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.

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": "4.7.0",
3+
"version": "4.7.1",
44
"description": "The plotly JupyterLab extension",
55
"author": "The plotly.py team",
66
"license": "MIT",

packages/javascript/plotlywidget/package-lock.json

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

packages/javascript/plotlywidget/package.json

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

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__ = "4.7.0"
5+
__frontend_version__ = "4.7.1"

packages/python/plotly/plotlywidget/static/index.js

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

0 commit comments

Comments
 (0)