Skip to content

Commit 09f7879

Browse files
committed
Update to rc1 versions
1 parent 58a96e7 commit 09f7879

File tree

9 files changed

+23
-21
lines changed

9 files changed

+23
-21
lines changed

Diff for: README.md

+15-13
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.0a9
81+
pip install plotly==4.0.0rc1
8282
```
8383

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

8989
### Jupyter Notebook Support
@@ -105,13 +105,13 @@ For use in JupyterLab, install the `jupyterlab` and `ipywidgets`
105105
packages using pip...
106106

107107
```
108-
pip install jupyterlab==1.0.0 "ipywidgets==7.5"
108+
pip install jupyterlab==1.0 "ipywidgets==7.5"
109109
```
110110

111111
or conda.
112112

113113
```
114-
conda install -c conda-forge jupyterlab=1.0.0 "ipywidgets=7.5"
114+
conda install -c defaults -c conda-forge jupyterlab=1.0 "ipywidgets=7.5"
115115
```
116116

117117
Then run the following commands to install the required JupyterLab extensions:
@@ -123,16 +123,16 @@ export NODE_OPTIONS=--max-old-space-size=4096
123123
set NODE_OPTIONS=--max-old-space-size=4096
124124
125125
# Jupyter widgets extension
126-
jupyter labextension install @jupyter-widgets/[email protected].0 --no-build
126+
jupyter labextension install @jupyter-widgets/[email protected] --no-build
127127
128128
# FigureWidget support
129-
jupyter labextension install [email protected]alpha.4 --no-build
129+
jupyter labextension install [email protected]rc.1 --no-build
130130
131131
# and jupyterlab renderer support
132-
jupyter labextension install [email protected]alpha.5 --no-build
132+
jupyter labextension install [email protected]rc.1 --no-build
133133
134134
# JupyterLab chart editor support (optional)
135-
jupyter labextension install jupyterlab-chart-editor@1.1 --no-build
135+
jupyter labextension install jupyterlab-chart-editor@1.2 --no-build
136136
137137
# Build extensions (must be done to activate extensions since --no-build is used above)
138138
jupyter lab build
@@ -168,29 +168,31 @@ 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.0a1
171+
pip install plotly-geo==1.0.0rc1
172172
```
173173

174174
or conda
175175
```
176-
conda install -c plotly/label/test plotly-geo=1.0.0a1
176+
conda install -c plotly/label/test plotly-geo=1.0.0rc1
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.0a5
184+
pip install chart-studio==1.0.0rc1
185185
```
186186

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

192192
## Migration
193-
If you're migrating from plotly.py version 2, please check out the [migration guide](migration-guide.md)
193+
If you're migrating from plotly.py version 3, please check out the [Version 4 migration guide](https://plot.ly/python/next/v4-migration/)
194+
195+
If you're migrating from plotly.py version 2, please check out the [Version 3 migration guide](migration-guide.md)
194196

195197
## Copyright and Licenses
196198
Code and documentation copyright 2019 Plotly, Inc.

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-alpha.5",
3+
"version": "1.0.0-rc.1",
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-alpha.4",
3+
"version": "1.0.0-rc.1",
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.0a5",
13+
version="1.0.0rc1",
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.0a1",
13+
version="1.0.0rc1",
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-alpha.3"
5+
__frontend_version__ = "^1.0.0-rc.1"

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-alpha.4","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-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"}}
1244412444

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

0 commit comments

Comments
 (0)