Skip to content

Commit 6613db8

Browse files
committed
Update to final versions
1 parent b39db73 commit 6613db8

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

Diff for: README.md

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

7979
plotly.py may be installed using pip...
8080
```
81-
pip install plotly==4.0.0rc1
81+
pip install plotly==4.0.0
8282
```
8383

8484
or conda.
8585
```
86-
conda install -c plotly/label/test plotly==4.0.0rc1
86+
conda install -c plotly plotly==4.0.0
8787
```
8888

8989
### Jupyter Notebook Support
@@ -126,10 +126,10 @@ set NODE_OPTIONS=--max-old-space-size=4096
126126
jupyter labextension install @jupyter-widgets/[email protected] --no-build
127127
128128
# FigureWidget support
129-
jupyter labextension install [email protected]-rc.1 --no-build
129+
jupyter labextension install [email protected] --no-build
130130
131131
# and jupyterlab renderer support
132-
jupyter labextension install [email protected]-rc.1 --no-build
132+
jupyter labextension install [email protected] --no-build
133133
134134
# JupyterLab chart editor support (optional)
135135
jupyter labextension install [email protected] --no-build
@@ -168,25 +168,25 @@ choropleth figure factory is one such example. These shape files are distributed
168168
separate `plotly-geo` package. This package can be installed using pip...
169169

170170
```
171-
pip install plotly-geo==1.0.0rc1
171+
pip install plotly-geo==1.0.0
172172
```
173173

174174
or conda
175175
```
176-
conda install -c plotly/label/test plotly-geo=1.0.0rc1
176+
conda install -c plotly plotly-geo=1.0.0
177177
```
178178

179179
### Chart Studio support
180180
The `chart-studio` package can be used to upload plotly figures to Plotly's Chart
181181
Studio Cloud or On-Prem service. This package can be installed using pip...
182182

183183
```
184-
pip install chart-studio==1.0.0rc1
184+
pip install chart-studio==1.0.0
185185
```
186186

187187
or conda
188188
```
189-
conda install -c plotly/label/test chart-studio=1.0.0rc1
189+
conda install -c plotly chart-studio=1.0.0
190190
```
191191

192192
## Migration

Diff for: 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.

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

Diff for: 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.

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

Diff for: packages/python/chart-studio/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def readme():
1010

1111
setup(
1212
name="chart-studio",
13-
version="1.0.0rc1",
13+
version="1.0.0",
1414
author="Chris P",
1515
author_email="[email protected]",
1616
maintainer="Jon Mease",

Diff for: packages/python/plotly-geo/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def readme():
1010

1111
setup(
1212
name="plotly-geo",
13-
version="1.0.0rc1",
13+
version="1.0.0",
1414
author="Chris P",
1515
author_email="[email protected]",
1616
maintainer="Jon Mease",

Diff for: 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__ = "^1.0.0-rc.1"
5+
__frontend_version__ = "^1.0.0"

Diff for: packages/python/plotly/plotlywidget/static/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12440,7 +12440,7 @@ module.exports = function identity(d) { return d; };
1244012440
/* 18 */
1244112441
/***/ (function(module, exports) {
1244212442

12443-
module.exports = {"name":"plotlywidget","version":"1.0.0-rc.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":"npm run build:src","build:src":"rimraf dist && tsc","clean":"rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'","prepublish":"webpack","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.48.3","@jupyter-widgets/base":"^2.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js"}}
12443+
module.exports = {"name":"plotlywidget","version":"1.0.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":"npm run build:src","build:src":"rimraf dist && tsc","clean":"rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'","prepublish":"webpack","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.48.3","@jupyter-widgets/base":"^2.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js"}}
1244412444

1244512445
/***/ }),
1244612446
/* 19 */

0 commit comments

Comments
 (0)