- update to 5.17.0:

* Improved json docstrings, added `BasePlotlyType.to_json()`
    method
  * Updated Plotly.js from version 2.25.2 to version 2.26.0. See
    the plotly.js CHANGELOG for more information. These changes
    are reflected in the auto-generated `plotly.graph_objects`
    module. Notable changes include:
  * Add "min", "max", "min reversed" and "max reversed" autorange
    options and handle partial ranges (i.e. one end being null),
    add `autorangeoptions` (`clipmin`, `clipmax`, `minallowed`,
    `maxallowed`, `include`) as well as `minallowed` and
    `maxallowed` to cartesian, gl3d and radial axes
  * Add [n]-sigma (std deviations) box plots as an alternative to
    quartiles
  * Add "top left" & "top center" side options to legend title
  * Add "false" option to `scaleanchor` to allow removing a
    constraint that is set by default
  * Fixed two issues with px.imshow: [#4330] when facet_col is an
    earlier dimension than animation_frame for xarrays and
    [#4329] when facet_col has string coordinates in xarrays

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-plotly?expand=0&rev=60
This commit is contained in:
2024-03-04 09:45:54 +00:00
committed by Git OBS Bridge
parent 76e3305134
commit 83098f5ff5
6 changed files with 31 additions and 7 deletions

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Mon Mar 4 09:44:49 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 5.17.0:
* Improved json docstrings, added `BasePlotlyType.to_json()`
method
* Updated Plotly.js from version 2.25.2 to version 2.26.0. See
the plotly.js CHANGELOG for more information. These changes
are reflected in the auto-generated `plotly.graph_objects`
module. Notable changes include:
* Add "min", "max", "min reversed" and "max reversed" autorange
options and handle partial ranges (i.e. one end being null),
add `autorangeoptions` (`clipmin`, `clipmax`, `minallowed`,
`maxallowed`, `include`) as well as `minallowed` and
`maxallowed` to cartesian, gl3d and radial axes
* Add [n]-sigma (std deviations) box plots as an alternative to
quartiles
* Add "top left" & "top center" side options to legend title
* Add "false" option to `scaleanchor` to allow removing a
constraint that is set by default
* Fixed two issues with px.imshow: [#4330] when facet_col is an
earlier dimension than animation_frame for xarrays and
[#4329] when facet_col has string coordinates in xarrays
-------------------------------------------------------------------
Sat Mar 2 10:07:30 UTC 2024 - Ben Greiner <code@bnavigator.de>