Skip to content

Commit 1e9e4bd

Browse files
bump plotly.js to 2.17.1
1 parent 2cde7ee commit 1e9e4bd

File tree

162 files changed

+723
-812
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+723
-812
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
### Updated
88
- Support for ipywidgets 8 [#3930](https://github.com/plotly/plotly.py/pull/3930)
9-
- Updated Plotly.js to from version 2.16.1 to version 2.17.0. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2170----2022-12-22) for more information. Notable changes include:
9+
- Updated Plotly.js to from version 2.16.1 to version 2.17.1. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2170----2022-12-22) for more information. Notable changes include:
1010
- Add `shift` and `autoshift` to cartesian y axes to help avoid overlapping of multiple axes [[#6334](https://github.com/plotly/plotly.js/pull/6334)],
1111
with thanks to [Gamma Technologies](https://www.gtisoft.com) for sponsoring the related development!
1212
- Introduce group attributes for `scatter` trace i.e. `alignmentgroup`, `offsetgroup`, `scattermode` and `scattergap` [[#6381](https://github.com/plotly/plotly.js/pull/6381)],

Diff for: packages/javascript/jupyterlab-plotly/package-lock.json

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

Diff for: packages/javascript/jupyterlab-plotly/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"@lumino/messaging": "^1.2.3",
6666
"@lumino/widgets": "^1.8.1",
6767
"lodash": "^4.17.4",
68-
"plotly.js": "^2.17.0"
68+
"plotly.js": "^2.17.1"
6969
},
7070
"jupyterlab": {
7171
"extension": "lib/jupyterlab-plugin",

Diff for: packages/python/plotly/plotly/graph_objects/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
from ..graph_objs._figurewidget import FigureWidget
274274
else:
275275
raise ImportError()
276-
except ImportError:
276+
except Exception:
277277
from ..missing_ipywidgets import FigureWidget
278278
else:
279279
__all__.append("FigureWidget")
@@ -291,7 +291,7 @@ def __getattr__(import_name):
291291
return FigureWidget
292292
else:
293293
raise ImportError()
294-
except ImportError:
294+
except Exception:
295295
from ..missing_ipywidgets import FigureWidget
296296

297297
return FigureWidget

Diff for: packages/python/plotly/plotly/graph_objs/_carpet.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ def aaxis(self):
276276
Sets the tick label formatting rule using d3
277277
formatting mini-languages which are very
278278
similar to those in Python. For numbers, see: h
279-
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
280-
ormat. And for dates see:
279+
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
280+
format. And for dates see:
281281
https://github.com/d3/d3-time-
282282
format/tree/v2.2.3#locale_format. We add two
283283
items to d3's date formatter: "%h" for half of
@@ -596,8 +596,8 @@ def baxis(self):
596596
Sets the tick label formatting rule using d3
597597
formatting mini-languages which are very
598598
similar to those in Python. For numbers, see: h
599-
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
600-
ormat. And for dates see:
599+
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
600+
format. And for dates see:
601601
https://github.com/d3/d3-time-
602602
format/tree/v2.2.3#locale_format. We add two
603603
items to d3's date formatter: "%h" for half of

Diff for: packages/python/plotly/plotly/graph_objs/_choropleth.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ def colorbar(self):
245245
Sets the tick label formatting rule using d3
246246
formatting mini-languages which are very
247247
similar to those in Python. For numbers, see: h
248-
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
249-
ormat. And for dates see:
248+
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
249+
format. And for dates see:
250250
https://github.com/d3/d3-time-
251251
format/tree/v2.2.3#locale_format. We add two
252252
items to d3's date formatter: "%h" for half of

Diff for: packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,8 @@ def colorbar(self):
269269
Sets the tick label formatting rule using d3
270270
formatting mini-languages which are very
271271
similar to those in Python. For numbers, see: h
272-
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
273-
ormat. And for dates see:
272+
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
273+
format. And for dates see:
274274
https://github.com/d3/d3-time-
275275
format/tree/v2.2.3#locale_format. We add two
276276
items to d3's date formatter: "%h" for half of

Diff for: packages/python/plotly/plotly/graph_objs/_cone.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,8 @@ def colorbar(self):
371371
Sets the tick label formatting rule using d3
372372
formatting mini-languages which are very
373373
similar to those in Python. For numbers, see: h
374-
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
375-
ormat. And for dates see:
374+
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
375+
format. And for dates see:
376376
https://github.com/d3/d3-time-
377377
format/tree/v2.2.3#locale_format. We add two
378378
items to d3's date formatter: "%h" for half of

0 commit comments

Comments
 (0)