Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6c463ee

Browse filesBrowse files
version 4.14.3
1 parent ec1e83b commit 6c463ee
Copy full SHA for 6c463ee

File tree

Expand file treeCollapse file tree

9 files changed

+16
-16
lines changed
Filter options
Expand file treeCollapse file tree

9 files changed

+16
-16
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55

6-
## [4.14.3] - UNRELEASED
6+
## [4.14.3] - 2021-01-12
77

88
### Fixed
99

‎README.md

Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Our recommended IDE for Plotly’s Python graphing library is Dash Enterprise’
3737

3838
## Quickstart
3939

40-
`pip install plotly==4.14.2`
40+
`pip install plotly==4.14.3`
4141

4242
Inside [Jupyter notebook](https://jupyter.org/install) (installable with `pip install "notebook>=5.3" "ipywidgets>=7.5"`):
4343

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

8888
```
89-
pip install plotly==4.14.2
89+
pip install plotly==4.14.3
9090
```
9191

9292
or conda.
9393

9494
```
95-
conda install -c plotly plotly=4.14.2
95+
conda install -c plotly plotly=4.14.3
9696
```
9797

9898
### Jupyter Notebook Support
@@ -129,10 +129,10 @@ Then run the following commands to install the required JupyterLab extensions (n
129129

130130
```
131131
# Basic JupyterLab renderer support
132-
jupyter labextension install jupyterlab-plotly@4.14.2
132+
jupyter labextension install jupyterlab-plotly@4.14.3
133133
134134
# OPTIONAL: Jupyter widgets extension for FigureWidget support
135-
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.14.2
135+
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.14.3
136136
```
137137

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

‎doc/python/getting-started.md

Copy file name to clipboardExpand all lines: doc/python/getting-started.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ We also encourage you to join the [Plotly Community Forum](http://community.plot
5959
`plotly` may be installed using `pip`:
6060

6161
```
62-
$ pip install plotly==4.14.2
62+
$ pip install plotly==4.14.3
6363
```
6464

6565
or `conda`:
6666

6767
```
68-
$ conda install -c plotly plotly=4.14.2
68+
$ conda install -c plotly plotly=4.14.3
6969
```
7070

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

158158
```
159159
# JupyterLab renderer support
160-
jupyter labextension install jupyterlab-plotly@4.14.2
160+
jupyter labextension install jupyterlab-plotly@4.14.3
161161
162162
# OPTIONAL: Jupyter widgets extension
163-
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.14.2
163+
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.14.3
164164
```
165165

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

‎packages/javascript/jupyterlab-plotly/package-lock.json

Copy file name to clipboardExpand all lines: packages/javascript/jupyterlab-plotly/package-lock.json
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/javascript/jupyterlab-plotly/package.json

Copy file name to clipboardExpand all lines: packages/javascript/jupyterlab-plotly/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-plotly",
3-
"version": "4.14.2",
3+
"version": "4.14.3",
44
"description": "The plotly JupyterLab extension",
55
"author": "The plotly.py team",
66
"license": "MIT",

‎packages/javascript/plotlywidget/package-lock.json

Copy file name to clipboardExpand all lines: packages/javascript/plotlywidget/package-lock.json
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/javascript/plotlywidget/package.json

Copy file name to clipboardExpand all lines: packages/javascript/plotlywidget/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotlywidget",
3-
"version": "4.14.2",
3+
"version": "4.14.3",
44
"description": "The plotly JupyterLab extension",
55
"author": "The plotly.py team",
66
"license": "MIT",

‎packages/python/plotly/plotly/_widget_version.py

Copy file name to clipboardExpand all lines: packages/python/plotly/plotly/_widget_version.py
+1-1Lines changed: 1 addition & 1 deletion
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.14.2"
5+
__frontend_version__ = "^4.14.3"

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

Copy file name to clipboardExpand all lines: packages/python/plotly/plotlywidget/static/index.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ module.exports = g;
9494
/* 1 */
9595
/***/ (function(module, exports) {
9696

97-
module.exports = {"name":"plotlywidget","version":"4.14.2","description":"The plotly JupyterLab extension","author":"The plotly.py team","license":"MIT","main":"src/index.js","repository":{"type":"git","url":"https://github.com/plotly/plotly.py"},"keywords":["jupyter","widgets","ipython","ipywidgets","plotly"],"files":["src/**/*.js","dist/*.js","style/*.*"],"scripts":{"build":"webpack","clean":"rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'","test":"echo \"Error: no test specified\" && exit 1"},"devDependencies":{"webpack":"^3.10.0","rimraf":"^2.6.1","ify-loader":"^1.1.0","typescript":"~3.1.1"},"dependencies":{"plotly.js":"^1.58.4","@jupyter-widgets/base":"^2.0.0 || ^3.0.0 || ^4.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js","sharedPackages":{"@jupyter-widgets/base":{"bundled":false,"singleton":true}}}}
97+
module.exports = {"name":"plotlywidget","version":"4.14.3","description":"The plotly JupyterLab extension","author":"The plotly.py team","license":"MIT","main":"src/index.js","repository":{"type":"git","url":"https://github.com/plotly/plotly.py"},"keywords":["jupyter","widgets","ipython","ipywidgets","plotly"],"files":["src/**/*.js","dist/*.js","style/*.*"],"scripts":{"build":"webpack","clean":"rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'","test":"echo \"Error: no test specified\" && exit 1"},"devDependencies":{"webpack":"^3.10.0","rimraf":"^2.6.1","ify-loader":"^1.1.0","typescript":"~3.1.1"},"dependencies":{"plotly.js":"^1.58.4","@jupyter-widgets/base":"^2.0.0 || ^3.0.0 || ^4.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js","sharedPackages":{"@jupyter-widgets/base":{"bundled":false,"singleton":true}}}}
9898

9999
/***/ }),
100100
/* 2 */

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.