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 df827da

Browse filesBrowse files
4.8 release
1 parent 4946db6 commit df827da
Copy full SHA for df827da

File tree

Expand file treeCollapse file tree

10 files changed

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

10 files changed

+20
-20
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
@@ -2,7 +2,7 @@
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.8.0] - not yet released
5+
## [4.8.0] - 2020-05-26
66

77
### Added
88

‎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
@@ -33,7 +33,7 @@
3333

3434
## Quickstart
3535

36-
`pip install plotly==4.7.1`
36+
`pip install plotly==4.8.0`
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.1
85+
pip install plotly==4.8.0
8686
```
8787

8888
or conda.
8989

9090
```
91-
conda install -c plotly plotly=4.7.1
91+
conda install -c plotly plotly=4.8.0
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 jupyterlab-plotly@4.7.1
128+
jupyter labextension install jupyterlab-plotly@4.8.0
129129
130130
# OPTIONAL: Jupyter widgets extension for FigureWidget support
131-
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.7.1
131+
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.8.0
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

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
@@ -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.1
52+
$ pip install plotly==4.8.0
5353
```
5454

5555
or conda.
5656

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

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

135135
```
136136
# JupyterLab renderer support
137-
jupyter labextension install jupyterlab-plotly@4.7.1
137+
jupyter labextension install jupyterlab-plotly@4.8.0
138138
139139
# OPTIONAL: Jupyter widgets extension
140-
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.7.1
140+
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.8.0
141141
```
142142

143143
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.7.1",
3+
"version": "4.8.0",
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.7.1",
3+
"version": "4.8.0",
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.7.1"
5+
__frontend_version__ = "^4.8.0"

‎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.7.1","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.54.1","@jupyter-widgets/base":"^2.0.0 || ^3.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js"}}
97+
module.exports = {"name":"plotlywidget","version":"4.8.0","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.54.1","@jupyter-widgets/base":"^2.0.0 || ^3.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js"}}
9898

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

‎packages/python/plotly/setup.py

Copy file name to clipboardExpand all lines: packages/python/plotly/setup.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -448,11 +448,11 @@ def run(self):
448448
use_2to3=False,
449449
author="Chris P",
450450
author_email="chris@plot.ly",
451-
maintainer="Jon Mease",
452-
maintainer_email="jon@plot.ly",
453-
url="https://plot.ly/python/",
451+
maintainer="Nicolas Kruchten",
452+
maintainer_email="nicolas@plot.ly",
453+
url="https://plotly.com/python/",
454454
project_urls={"Github": "https://github.com/plotly/plotly.py"},
455-
description="An open-source, interactive graphing library for Python",
455+
description="An open-source, interactive data visualization library for Python",
456456
long_description=readme(),
457457
long_description_content_type="text/markdown",
458458
classifiers=[

0 commit comments

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