File tree Expand file tree Collapse file tree 6 files changed +29
-10
lines changed
Filter options
Expand file tree Collapse file tree 6 files changed +29
-10
lines changed
Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
- ## [ 3.1.0] - ???
5
+ ## [ 3.1.0] - 2018-07-20
6
+
7
+ ### JupyterLab plotlywidget version: 0.2.0
8
+ Please upgrade the Jupyterlab ` plotlywidget ` extension to version 0.2.0
9
+ (See README for instructions)
6
10
7
11
### Plotly.js version: 1.39.2
12
+ See [ Plotly.js CHANGELOG] ( https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md ) for
13
+ full list of changes. Select highlights are listed below.
14
+
15
+ ### Added
16
+ - Added 3D streamtube traces
17
+ [ plotly/plotly.js #2658 ] ( https://github.com/plotly/plotly.js/pull/2658 )
18
+ - Added support for on-graph text in scattergl traces
19
+ - Added gridshape attribute to polar subplots with values 'circular' (the default) and 'linear' (to draw polygon grids)
20
+ [ plotly/plotly.js #2739 ] ( https://github.com/plotly/plotly.js/pull/2739 )
8
21
9
22
## [ 3.0.2] - 2018-07-17
10
23
This is a minor bug-fix release to 3.0.0
11
24
25
+ ### JupyterLab plotlywidget version: 0.1.1
26
+
12
27
### Plotly.js version: 1.38.3
13
28
14
29
### Fixed
@@ -26,6 +41,8 @@ Note: This release's installation was broken. It has been removed from PyPI
26
41
27
42
This is a major version with many exciting updates. See the [ Introducing plotly.py 3.0.0] ( https://medium.com/@plotlygraphs/introducing-plotly-py-3-0-0-7bb1333f69c6 ) post for more information.
28
43
44
+ ### JupyterLab plotlywidget version: 0.1.1
45
+
29
46
### Plotly.js version: 1.38.3
30
47
31
48
### Added
Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ jupyter nbextension enable --py plotlywidget --sys-prefix
43
43
In addition, to add JupyterLab support run the following commands
44
44
45
45
```
46
- pip install jupyterlab
46
+ pip install jupyterlab==0.32.1
47
47
export NODE_OPTIONS=--max-old-space-size=4096
48
- jupyter labextension install @jupyter-widgets/jupyterlab-manager # install the Jupyter widgets extension
49
- jupyter labextension install plotlywidget
48
+ jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.35 # install the Jupyter widgets extension
49
+ jupyter labextension install plotlywidget@0.2
50
50
```
51
51
52
52
If you're migrating from plotly.py version 2, please check out the [ migration guid] ( migration-guide.md )
Original file line number Diff line number Diff line change @@ -21,14 +21,16 @@ dependencies:
21
21
# install everything tox knows about and the plotly package.
22
22
- pip install tox
23
23
- tox --notest :
24
- timeout : 1200
24
+ timeout : 1200
25
+
25
26
- pip install -I .
26
27
27
28
# we need to cd out of the project root to ensure the install worked
28
29
- cd ~ && python -c "import plotly"
29
30
30
31
# install jupyter test JS requirements
31
- - cd ${PLOTLY_JUPYTER_TEST_DIR} && npm i
32
+ - cd ${PLOTLY_JUPYTER_TEST_DIR} && npm i :
33
+ timeout : 1200
32
34
33
35
cache_directories :
34
36
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " plotlywidget" ,
3
- "version" : " 0.1.1 " ,
3
+ "version" : " 0.2.0 " ,
4
4
"description" : " The plotly.py ipywidgets library" ,
5
5
"author" : " The plotly.py team" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ def get_headers():
112
112
113
113
114
114
@retry (wait_random_min = 100 , wait_random_max = 1000 , wait_exponential_max = 10000 ,
115
- stop_max_delay = 90000 )
115
+ stop_max_delay = 120000 )
116
116
def request (method , url , ** kwargs ):
117
117
"""
118
118
Central place to make any api v2 api request.
Original file line number Diff line number Diff line change 1
- __version__ = '3.1.0a1 '
2
- __frontend_version__ = '^0.1.1 '
1
+ __version__ = '3.1.0 '
2
+ __frontend_version__ = '^0.2.0 '
3
3
4
4
5
5
def stable_semver ():
You can’t perform that action at this time.
0 commit comments