Skip to content

Commit 331c85f

Browse files
authored
Release 3.6.1 (#1430)
* Update to plotly.js 1.44.3 * 3.6.1 changelog
1 parent 73995e3 commit 331c85f

File tree

16 files changed

+180
-107
lines changed

16 files changed

+180
-107
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -2,6 +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.6.1] - 2019-02-08
6+
7+
### Updated
8+
- Updated Plotly.js to version 1.44.3. See the
9+
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1443----2019-02-06)
10+
for more information.
11+
12+
### Fixed
13+
- Crash on import when ipywidgets < 7 installed
14+
([#1425](https://github.com/plotly/plotly.py/pull/1425))
15+
- Made `scipy` an optional import for the ternary contour figure factory
16+
([#1423](https://github.com/plotly/plotly.py/pull/1423))
17+
- Eliminated use of deprecated `numpy.asscalar` function
18+
([#1428](https://github.com/plotly/plotly.py/pull/1428))
19+
20+
21+
### Updated
22+
- Updated Plotly.js to version 1.44.1. Select highlights included below.
23+
See the
24+
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1441----2019-01-24)
25+
for more information.
26+
527
## [3.6.0] - 2019-02-01
628

729
### Updated

README.md

+3-3
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==3.6.0
81+
pip install plotly==3.6.1
8282
```
8383

8484
or conda.
8585
```
86-
conda install -c plotly plotly=3.6.0
86+
conda install -c plotly plotly=3.6.1
8787
```
8888

8989
### Jupyter Notebook Support
@@ -126,7 +126,7 @@ set NODE_OPTIONS=--max-old-space-size=4096
126126
jupyter labextension install @jupyter-widgets/[email protected] --no-build
127127
128128
# FigureWidget support
129-
jupyter labextension install [email protected].0 --no-build
129+
jupyter labextension install [email protected].1 --no-build
130130
131131
# offline iplot support
132132
jupyter labextension install @jupyterlab/[email protected] --no-build

js/package-lock.json

+36-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotlywidget",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "The plotly.py ipywidgets library",
55
"author": "The plotly.py team",
66
"license": "MIT",
@@ -31,7 +31,7 @@
3131
"ify-loader": "^1.1.0"
3232
},
3333
"dependencies": {
34-
"plotly.js": "1.44.1",
34+
"plotly.js": "1.44.3",
3535
"@jupyter-widgets/base": "^1.0.0",
3636
"lodash": "^4.17.4"
3737
},

plotly/graph_objs/table/_cells.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ def fill(self):
6464
6565
color
6666
Sets the cell fill color. It accepts either a
67-
specific color or an array of colors.
67+
specific color or an array of colors or a 2D
68+
array of colors.
6869
colorsrc
6970
Sets the source reference on plot.ly for color
7071
.

plotly/graph_objs/table/_header.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ def fill(self):
6464
6565
color
6666
Sets the cell fill color. It accepts either a
67-
specific color or an array of colors.
67+
specific color or an array of colors or a 2D
68+
array of colors.
6869
colorsrc
6970
Sets the source reference on plot.ly for color
7071
.

plotly/graph_objs/table/cells/_fill.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Fill(BaseTraceHierarchyType):
1010
def color(self):
1111
"""
1212
Sets the cell fill color. It accepts either a specific color or
13-
an array of colors.
13+
an array of colors or a 2D array of colors.
1414
1515
The 'color' property is a color and may be specified as:
1616
- A hex string (e.g. '#ff0000')
@@ -98,7 +98,7 @@ def _prop_descriptions(self):
9898
return """\
9999
color
100100
Sets the cell fill color. It accepts either a specific
101-
color or an array of colors.
101+
color or an array of colors or a 2D array of colors.
102102
colorsrc
103103
Sets the source reference on plot.ly for color .
104104
"""
@@ -114,7 +114,7 @@ def __init__(self, arg=None, color=None, colorsrc=None, **kwargs):
114114
an instance of plotly.graph_objs.table.cells.Fill
115115
color
116116
Sets the cell fill color. It accepts either a specific
117-
color or an array of colors.
117+
color or an array of colors or a 2D array of colors.
118118
colorsrc
119119
Sets the source reference on plot.ly for color .
120120

plotly/graph_objs/table/header/_fill.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Fill(BaseTraceHierarchyType):
1010
def color(self):
1111
"""
1212
Sets the cell fill color. It accepts either a specific color or
13-
an array of colors.
13+
an array of colors or a 2D array of colors.
1414
1515
The 'color' property is a color and may be specified as:
1616
- A hex string (e.g. '#ff0000')
@@ -98,7 +98,7 @@ def _prop_descriptions(self):
9898
return """\
9999
color
100100
Sets the cell fill color. It accepts either a specific
101-
color or an array of colors.
101+
color or an array of colors or a 2D array of colors.
102102
colorsrc
103103
Sets the source reference on plot.ly for color .
104104
"""
@@ -114,7 +114,7 @@ def __init__(self, arg=None, color=None, colorsrc=None, **kwargs):
114114
an instance of plotly.graph_objs.table.header.Fill
115115
color
116116
Sets the cell fill color. It accepts either a specific
117-
color or an array of colors.
117+
color or an array of colors or a 2D array of colors.
118118
colorsrc
119119
Sets the source reference on plot.ly for color .
120120

plotly/offline/_plotlyjs_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# DO NOT EDIT
22
# This file is generated by the updatebundle setup.py command
3-
__plotlyjs_version__ = '1.44.1'
3+
__plotlyjs_version__ = '1.44.3'

plotly/package_data/plot-schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33139,7 +33139,7 @@
3313933139
"arrayOk": true,
3314033140
"dflt": "white",
3314133141
"role": "style",
33142-
"description": "Sets the cell fill color. It accepts either a specific color or an array of colors.",
33142+
"description": "Sets the cell fill color. It accepts either a specific color or an array of colors or a 2D array of colors.",
3314333143
"editType": "calc"
3314433144
},
3314533145
"editType": "calc",
@@ -33316,7 +33316,7 @@
3331633316
"arrayOk": true,
3331733317
"role": "style",
3331833318
"dflt": "white",
33319-
"description": "Sets the cell fill color. It accepts either a specific color or an array of colors.",
33319+
"description": "Sets the cell fill color. It accepts either a specific color or an array of colors or a 2D array of colors.",
3332033320
"editType": "calc"
3332133321
},
3332233322
"editType": "calc",

plotly/package_data/plotly.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plotly/validators/table/cells/_fill.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ def __init__(
1414
'data_docs', """
1515
color
1616
Sets the cell fill color. It accepts either a
17-
specific color or an array of colors.
17+
specific color or an array of colors or a 2D
18+
array of colors.
1819
colorsrc
1920
Sets the source reference on plot.ly for color
2021
.

plotly/validators/table/header/_fill.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ def __init__(
1414
'data_docs', """
1515
color
1616
Sets the cell fill color. It accepts either a
17-
specific color or an array of colors.
17+
specific color or an array of colors or a 2D
18+
array of colors.
1819
colorsrc
1920
Sets the source reference on plot.ly for color
2021
.

plotly/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
__version__ = '3.6.0'
2-
__frontend_version__ = '^0.7.0'
1+
__version__ = '3.6.1'
2+
__frontend_version__ = '^0.7.1'
33

44

55
def stable_semver():

0 commit comments

Comments
 (0)