Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dc6221f

Browse files
authored
Release 3.1.0 (plotly#1064)
* Add JupyterLab python and JS versions to README instructions * Version 3.1.0 Changelog * Bump versions: plotly.py to 3.1.0, plotlywidget to 0.2.0 * Added plotlywidget version to prior releases * Bump retrying max to 2 minutes (tests still failing sometimes)
1 parent 29015ed commit dc6221f

File tree

6 files changed

+29
-10
lines changed

6 files changed

+29
-10
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,28 @@
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-
## [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)
610

711
### 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)
821

922
## [3.0.2] - 2018-07-17
1023
This is a minor bug-fix release to 3.0.0
1124

25+
### JupyterLab plotlywidget version: 0.1.1
26+
1227
### Plotly.js version: 1.38.3
1328

1429
### Fixed
@@ -26,6 +41,8 @@ Note: This release's installation was broken. It has been removed from PyPI
2641

2742
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.
2843

44+
### JupyterLab plotlywidget version: 0.1.1
45+
2946
### Plotly.js version: 1.38.3
3047

3148
### Added

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ jupyter nbextension enable --py plotlywidget --sys-prefix
4343
In addition, to add JupyterLab support run the following commands
4444

4545
```
46-
pip install jupyterlab
46+
pip install jupyterlab==0.32.1
4747
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
5050
```
5151

5252
If you're migrating from plotly.py version 2, please check out the [migration guid](migration-guide.md)

circle.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,16 @@ dependencies:
2121
# install everything tox knows about and the plotly package.
2222
- pip install tox
2323
- tox --notest:
24-
timeout: 1200
24+
timeout: 1200
25+
2526
- pip install -I .
2627

2728
# we need to cd out of the project root to ensure the install worked
2829
- cd ~ && python -c "import plotly"
2930

3031
# install jupyter test JS requirements
31-
- cd ${PLOTLY_JUPYTER_TEST_DIR} && npm i
32+
- cd ${PLOTLY_JUPYTER_TEST_DIR} && npm i:
33+
timeout: 1200
3234

3335
cache_directories:
3436

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotlywidget",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "The plotly.py ipywidgets library",
55
"author": "The plotly.py team",
66
"license": "MIT",

plotly/api/v2/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def get_headers():
112112

113113

114114
@retry(wait_random_min=100, wait_random_max=1000, wait_exponential_max=10000,
115-
stop_max_delay=90000)
115+
stop_max_delay=120000)
116116
def request(method, url, **kwargs):
117117
"""
118118
Central place to make any api v2 api request.

plotly/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
__version__ = '3.1.0a1'
2-
__frontend_version__ = '^0.1.1'
1+
__version__ = '3.1.0'
2+
__frontend_version__ = '^0.2.0'
33

44

55
def stable_semver():

0 commit comments

Comments
 (0)