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

Skip to content

Release 3.1.0 #1064

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jul 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,28 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.1.0] - ???
## [3.1.0] - 2018-07-20

### JupyterLab plotlywidget version: 0.2.0
Please upgrade the Jupyterlab `plotlywidget` extension to version 0.2.0
(See README for instructions)

### Plotly.js version: 1.39.2
See [Plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md) for
full list of changes. Select highlights are listed below.

### Added
- Added 3D streamtube traces
[plotly/plotly.js#2658](https://github.com/plotly/plotly.js/pull/2658)
- Added support for on-graph text in scattergl traces
- Added gridshape attribute to polar subplots with values 'circular' (the default) and 'linear' (to draw polygon grids)
[plotly/plotly.js#2739](https://github.com/plotly/plotly.js/pull/2739)

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

### JupyterLab plotlywidget version: 0.1.1

### Plotly.js version: 1.38.3

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

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.

### JupyterLab plotlywidget version: 0.1.1

### Plotly.js version: 1.38.3

### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jupyter nbextension enable --py plotlywidget --sys-prefix
In addition, to add JupyterLab support run the following commands

```
pip install jupyterlab
pip install jupyterlab==0.32.1
export NODE_OPTIONS=--max-old-space-size=4096
jupyter labextension install @jupyter-widgets/jupyterlab-manager # install the Jupyter widgets extension
jupyter labextension install plotlywidget
jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.35 # install the Jupyter widgets extension
jupyter labextension install plotlywidget@0.2
```

If you're migrating from plotly.py version 2, please check out the [migration guid](migration-guide.md)
Expand Down
6 changes: 4 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@ dependencies:
# install everything tox knows about and the plotly package.
- pip install tox
- tox --notest:
timeout: 1200
timeout: 1200

- pip install -I .

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

# install jupyter test JS requirements
- cd ${PLOTLY_JUPYTER_TEST_DIR} && npm i
- cd ${PLOTLY_JUPYTER_TEST_DIR} && npm i:
timeout: 1200

cache_directories:

Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlywidget",
"version": "0.1.1",
"version": "0.2.0",
"description": "The plotly.py ipywidgets library",
"author": "The plotly.py team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion plotly/api/v2/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def get_headers():


@retry(wait_random_min=100, wait_random_max=1000, wait_exponential_max=10000,
stop_max_delay=90000)
stop_max_delay=120000)
def request(method, url, **kwargs):
"""
Central place to make any api v2 api request.
Expand Down
4 changes: 2 additions & 2 deletions plotly/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = '3.1.0a1'
__frontend_version__ = '^0.1.1'
__version__ = '3.1.0'
__frontend_version__ = '^0.2.0'


def stable_semver():
Expand Down