Skip to content

Release 3.6.1 #1430

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 3 commits into from
Feb 8, 2019
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.6.1] - 2019-02-08

### Updated
- Updated Plotly.js to version 1.44.3. See the
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1443----2019-02-06)
for more information.

### Fixed
- Crash on import when ipywidgets < 7 installed
([#1425](https://github.com/plotly/plotly.py/pull/1425))
- Made `scipy` an optional import for the ternary contour figure factory
([#1423](https://github.com/plotly/plotly.py/pull/1423))
- Eliminated use of deprecated `numpy.asscalar` function
([#1428](https://github.com/plotly/plotly.py/pull/1428))


### Updated
- Updated Plotly.js to version 1.44.1. Select highlights included below.
See the
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1441----2019-01-24)
for more information.

## [3.6.0] - 2019-02-01

### Updated
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is

plotly.py may be installed using pip...
```
pip install plotly==3.6.0
pip install plotly==3.6.1
```

or conda.
```
conda install -c plotly plotly=3.6.0
conda install -c plotly plotly=3.6.1
```

### Jupyter Notebook Support
Expand Down Expand Up @@ -126,7 +126,7 @@ set NODE_OPTIONS=--max-old-space-size=4096
jupyter labextension install @jupyter-widgets/[email protected] --no-build

# FigureWidget support
jupyter labextension install [email protected].0 --no-build
jupyter labextension install [email protected].1 --no-build

# offline iplot support
jupyter labextension install @jupyterlab/[email protected] --no-build
Expand Down
72 changes: 36 additions & 36 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlywidget",
"version": "0.7.0",
"version": "0.7.1",
"description": "The plotly.py ipywidgets library",
"author": "The plotly.py team",
"license": "MIT",
Expand Down Expand Up @@ -31,7 +31,7 @@
"ify-loader": "^1.1.0"
},
"dependencies": {
"plotly.js": "1.44.1",
"plotly.js": "1.44.3",
"@jupyter-widgets/base": "^1.0.0",
"lodash": "^4.17.4"
},
Expand Down
3 changes: 2 additions & 1 deletion plotly/graph_objs/table/_cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def fill(self):

color
Sets the cell fill color. It accepts either a
specific color or an array of colors.
specific color or an array of colors or a 2D
array of colors.
colorsrc
Sets the source reference on plot.ly for color
.
Expand Down
3 changes: 2 additions & 1 deletion plotly/graph_objs/table/_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def fill(self):

color
Sets the cell fill color. It accepts either a
specific color or an array of colors.
specific color or an array of colors or a 2D
array of colors.
colorsrc
Sets the source reference on plot.ly for color
.
Expand Down
6 changes: 3 additions & 3 deletions plotly/graph_objs/table/cells/_fill.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Fill(BaseTraceHierarchyType):
def color(self):
"""
Sets the cell fill color. It accepts either a specific color or
an array of colors.
an array of colors or a 2D array of colors.

The 'color' property is a color and may be specified as:
- A hex string (e.g. '#ff0000')
Expand Down Expand Up @@ -98,7 +98,7 @@ def _prop_descriptions(self):
return """\
color
Sets the cell fill color. It accepts either a specific
color or an array of colors.
color or an array of colors or a 2D array of colors.
colorsrc
Sets the source reference on plot.ly for color .
"""
Expand All @@ -114,7 +114,7 @@ def __init__(self, arg=None, color=None, colorsrc=None, **kwargs):
an instance of plotly.graph_objs.table.cells.Fill
color
Sets the cell fill color. It accepts either a specific
color or an array of colors.
color or an array of colors or a 2D array of colors.
colorsrc
Sets the source reference on plot.ly for color .

Expand Down
6 changes: 3 additions & 3 deletions plotly/graph_objs/table/header/_fill.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Fill(BaseTraceHierarchyType):
def color(self):
"""
Sets the cell fill color. It accepts either a specific color or
an array of colors.
an array of colors or a 2D array of colors.

The 'color' property is a color and may be specified as:
- A hex string (e.g. '#ff0000')
Expand Down Expand Up @@ -98,7 +98,7 @@ def _prop_descriptions(self):
return """\
color
Sets the cell fill color. It accepts either a specific
color or an array of colors.
color or an array of colors or a 2D array of colors.
colorsrc
Sets the source reference on plot.ly for color .
"""
Expand All @@ -114,7 +114,7 @@ def __init__(self, arg=None, color=None, colorsrc=None, **kwargs):
an instance of plotly.graph_objs.table.header.Fill
color
Sets the cell fill color. It accepts either a specific
color or an array of colors.
color or an array of colors or a 2D array of colors.
colorsrc
Sets the source reference on plot.ly for color .

Expand Down
2 changes: 1 addition & 1 deletion plotly/offline/_plotlyjs_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# DO NOT EDIT
# This file is generated by the updatebundle setup.py command
__plotlyjs_version__ = '1.44.1'
__plotlyjs_version__ = '1.44.3'
4 changes: 2 additions & 2 deletions plotly/package_data/plot-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33139,7 +33139,7 @@
"arrayOk": true,
"dflt": "white",
"role": "style",
"description": "Sets the cell fill color. It accepts either a specific color or an array of colors.",
"description": "Sets the cell fill color. It accepts either a specific color or an array of colors or a 2D array of colors.",
"editType": "calc"
},
"editType": "calc",
Expand Down Expand Up @@ -33316,7 +33316,7 @@
"arrayOk": true,
"role": "style",
"dflt": "white",
"description": "Sets the cell fill color. It accepts either a specific color or an array of colors.",
"description": "Sets the cell fill color. It accepts either a specific color or an array of colors or a 2D array of colors.",
"editType": "calc"
},
"editType": "calc",
Expand Down
4 changes: 2 additions & 2 deletions plotly/package_data/plotly.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion plotly/validators/table/cells/_fill.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ def __init__(
'data_docs', """
color
Sets the cell fill color. It accepts either a
specific color or an array of colors.
specific color or an array of colors or a 2D
array of colors.
colorsrc
Sets the source reference on plot.ly for color
.
Expand Down
3 changes: 2 additions & 1 deletion plotly/validators/table/header/_fill.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ def __init__(
'data_docs', """
color
Sets the cell fill color. It accepts either a
specific color or an array of colors.
specific color or an array of colors or a 2D
array of colors.
colorsrc
Sets the source reference on plot.ly for color
.
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.6.0'
__frontend_version__ = '^0.7.0'
__version__ = '3.6.1'
__frontend_version__ = '^0.7.1'


def stable_semver():
Expand Down
Loading