8000 bump plotly.js to 2.17.1 · bartbroere/plotly.py@1e9e4bd · GitHub
[go: up one dir, main page]

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
  • bar/marker
  • carpet
  • choroplethmapbox
  • choropleth
  • cone
  • contourcarpet
  • contour
  • densitymapbox
  • funnel/marker
  • heatmapgl
  • heatmap
  • histogram2dcontour
  • histogram2d
  • histogram/marker
  • icicle/marker
  • indicator
  • isosurface
  • layout
  • mesh3d
  • parcats
  • parcoords
  • sankey
  • scatter3d
  • scattercarpet/marker
  • scattergeo/marker
  • scattergl/marker
  • scattermapbox/marker
  • scatterpolargl/marker
  • scatterpolar/marker
  • scattersmith/marker
  • scatterternary/marker
  • scatter/marker
  • splom/marker
  • streamtube
  • sunburst/marker
  • surface
  • table
  • treemap
  • volume
  • 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

    CHANGELOG.md

    Lines changed: 1 addition & 1 deletion
    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)],

    packages/javascript/jupyterlab-plotly/package-lock.json

    Lines changed: 47 additions & 151 deletions
    Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

    packages/javascript/jupyterlab-plotly/package.json

    Lines changed: 1 addition & 1 deletion
    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",

    packages/python/plotly/plotly/graph_objects/__init__.py

    Lines changed: 2 additions & 2 deletions
    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

    packages/python/plotly/plotly/graph_objs/_carpet.py

    Lines changed: 4 additions & 4 deletions
    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

    packages/python/plotly/plotly/graph_objs/_choropleth.py

    Lines changed: 2 additions & 2 deletions
    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

    packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py

    Lines changed: 2 additions & 2 deletions
    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

    packages/python/plotly/plotly/graph_objs/_cone.py

    Lines changed: 2 additions & 2 deletions
    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)
    0