Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python313-mizani-0.14.4-1.1 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python313-mizani Distribution: openSUSE Tumbleweed
Version: 0.14.4 Vendor: openSUSE
Release: 1.1 Build date: Sun Mar 15 21:23:44 2026
Group: Unspecified Build host: reproducible
Size: 968850 Source RPM: python-mizani-0.14.4-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/has2k1/mizani
Summary: Scales for Python
Mizani is a scales package for graphics.

Provides

Requires

License

BSD-3-Clause

Changelog

* Sun Mar 15 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.14.4:
    * Fixed handling of null types so that we can recognise as null
      whatever pandas sees as null. This resolves (plotnine #1021).
    * Fixed bug in :func:`~mizani.palettes.hue_pal` where drawing
      24 or more colors broke the palette and you got colors from a
      very narrow hue band close to the first color.
    * Fixed but in :func:`~mizani._colors.to_rgba` used by plotnine
      to recognise numpy integers and floats as alpha values. And
      also to recognise None and and an empty string to also mean
      "none", which is recognised by Matplotlib.
    * Changed :class:`~mizani.palettes.hue_pal` to use HCL color
      space from HSL (or HSLuv) space. The previous functionality
      is now available with :class:`~mizani.palettes.hls_pal`.
    * :class:`~mizani.breaks.breaks_date` now only accepts
      parameter n, the desired number of breaks. To generate breaks
      by the width, use :class:`~mizani.breaks.breaks_date_width`.
    * Added tableau color in the "tab:*" colorname space. e.g.
      "tab:red".
    * :class:`~mizani.breaks.breaks_width` to generate numeric
      breaks by specifying the width (interval between the breaks).
    * :class:`~mizani.breaks.breaks_timedelta_width` to generate
      timedelta breaks by specifying the width (interval between
      the breaks).
    * Added name "gray" aliases to all XKCD colors partially named
      "grey".
    * New algorithms to calculate datetime breaks by either n the
      desired number of breaks or width the interval between the
      breaks. When using the new
      :class:`~mizani.breaks.breaks_date_width`, you can align the
      dates by using an offset. (:issue:`58`)
    * Fixed using a discrete palette and requesting less colours
      than than the smallest swatch in the palette. Among the
      affected palettes are category10, category20, category20b,
      category20c.
    * Added aliases to the vega colormaps for the names used in
      matplotlib. plotnine issue
    * Make it possible to train discrete data that is a sequence of
      tuples. plotnine issue
    * For python >=3.13 ~mizani.bounds.squish_infinite and
      ~mizani.bounds.squish do not warning about invalid values
      when passed arrays with dtype=uint64 and a range with
      negative values.
    * Type checking pass with numpy 2.2.
    * Support for numpy timedelta64 has been removed. It was not
      well supported in the first place, so removing it should be
      of consequence.
    * mizani.transforms.trans_new function has been deprecated.
    * ~mizani.breaks.breaks_date has been slightly improved for the
      case when it generates monthly breaks.
    * :class:`~mizani.transforms.trans` gained new method
      diff_type_to_num that should be helpful with some arithmetic
      operations for non-numeric domains.
* Mon Sep 09 2024 Markéta Machová <mmachova@suse.com>
  - update to 0.12.2
    * mizani now requires python 3.9 and above
    * Renamed "husl" color palette type to "hsluv". "husl" is the old
      name but we still work although not part of the API.
    * Fixed squish and squish_infinite to work for non writeable
      pandas series. This is broken for numpy 2.1.0.
* Thu Jun 06 2024 Dirk Müller <dmueller@suse.com>
  - update to 0.11.4:
    * Fixed :class:`~mizani.bounds.squish` and
      :class:`~mizani.bounds.squish_infinite` so that they do not
      reuse numpy arrays. The users object is not modified.
    * Fixed bug when calculating monthly breaks where when the limits
      are narrow and do not align with the start and end of the
      month, there were no dates returned.
    * Added the ability to create reversed colormap for
      :class:`~mizani.palettes.cmap_pal` and
      :class:`~mizani.palettes.cmap_d_pal` using the matplotlib
      convention of `name_r`.
* Wed Apr 03 2024 Dirk Müller <dmueller@suse.com>
  - update to 0.11.1:
    * Fix :class:`mizani.palettes.brewer_pal` to return exact colors
      in the when the requested colors are less than or equal to
      those in the palette.
    * Add all matplotlib colormap and make them avalaible from
      :class:`~mizani.palettes.cmap_pal` and
      :class:`~mizani.palettes.cmap_d_pal` (:issue:`39`).
    * Added :class:`~mizani.breaks.breaks_symlog` to calculate
      breaks for the symmetric logarithm transformation.
    * The default `big_mark` for :class:`~mizani.labels.label_number`
      has been changed from a comma to nothing.
* Fri Mar 22 2024 Dirk Müller <dmueller@suse.com>
  - update to 0.11.0:
    * Removed FutureWarnings when using pandas 2.1.0
    * Added :class:`~mizani.breaks.breaks_symlog` to calculate
      breaks for the symmetric logarithm transformation.
    * The default `big_mark` for :class:`~mizani.labels.label_number`
      has been changed from a comma to nothing.
* Sun Feb 04 2024 Dirk Müller <dmueller@suse.com>
  - update to 0.10.0:
    * :class:`~mizani.formatters.mpl_format` has been removed,
      :class:`~mizani.formatters.number_format` takes its place.
    * :class:`~mizani.breaks.mpl_breaks` has been removed,
      :class:`~mizani.breaks.extended_breaks` has always been
      the default and it is sufficient.
    * matplotlib has been removed as a dependency of mizani.
    * mizani now requires python 3.9 and above.
    * The units parameter for of :class:`~mizani.formatters.timedelta_format`
      now accepts the values `"min", "day", "week", "month"`,
    instead of `"m", "d", "w", "M"`.
    * The naming convention for break formatting methods has changed
      from `*_format` to `label_*`.
    * The naming convention for break calculating methods has changed
      from `*_breaks` to `breaks_*`. Specifically these methods have
      been renamed.
    * `log_breaks` is now :class:`~mizani.breaks.breaks_log`
    * `trans_minor_breaks` is now :class:`~mizani.breaks.minor_breaks_trans`
    * `date_breaks` is now :class:`~mizani.breaks. breaks_date`
* Mon Mar 06 2023 Daniel Garcia <daniel.garcia@suse.com>
  - Disable broken test in i586 mizani.breaks.log_breaks, it's broken
    because it expect:
      array([     1000,    10000,   100000,  1000000])
    but got:
      array([     1000,    10000,   100000,  1000000], dtype=int32)
* Tue Feb 14 2023 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 0.8.1:
    * Fixed regression bug in mizani.formatters.log_format for
      where formatting for bases 2, 8 and 16 would fail if the values were
      float-integers.
    * mizani.formatters.log_format now uses exponent notation
      for bases other than base 10.
    * The lut parameter of mizani.palettes.cmap_pal and
      mizani.palettes.cmap_d_pal has been deprecated and will
      removed in a future version.
    * mizani.transforms.datetime_trans gained parameter tz
      that controls the timezone of the transformation.
    * mizani.formatters.log_format gained boolean parameter
      mathtex for TeX values as understood by matplotlib instead of
      values in scientific notation.
    * Fixed bug in mizani.bounds.zero_range where uint64
      values would cause a RuntimeError.
* Fri Feb 04 2022 Ben Greiner <code@bnavigator.de>
  - Update to 0.7.3
    * Fixed log_breaks for narrow range if base=2 (:issue:`76`).
* Thu Feb 18 2021 Ben Greiner <code@bnavigator.de>
  - Update to version 0.7.2
    * Fixed bug in :func:`~mizani.bounds.rescale_max` to properly
      handle values whose maximum is zero.
  - Skip python36 build: NumPy 1.20 in Tumbleweed dropped support
    for Python 3.6 (NEP 29)
  - SciPy is not a runtime requirement

Files

/usr/lib/python3.13/site-packages/mizani
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info/INSTALLER
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info/METADATA
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info/RECORD
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info/REQUESTED
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info/WHEEL
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info/licenses
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info/licenses/LICENSE
/usr/lib/python3.13/site-packages/mizani-0.14.4.dist-info/top_level.txt
/usr/lib/python3.13/site-packages/mizani/__init__.py
/usr/lib/python3.13/site-packages/mizani/__pycache__
/usr/lib/python3.13/site-packages/mizani/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/bounds.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/bounds.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/breaks.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/breaks.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/formatters.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/formatters.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/labels.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/labels.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/palettes.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/palettes.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/scale.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/scale.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/transforms.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/transforms.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/typing.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/typing.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/utils.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/__pycache__/utils.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors
/usr/lib/python3.13/site-packages/mizani/_colors/__init__.py
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/_named_color_values.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/_named_color_values.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/hsluv.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/hsluv.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/named_colors.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/named_colors.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/utils.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/__pycache__/utils.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__init__.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_colormap.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_colormap.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_cubehelix.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_cubehelix.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_interpolated.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_interpolated.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_listed.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_listed.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_palette_interpolated.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_palette_interpolated.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_segment_function.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_segment_function.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_segment_interpolated.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/__pycache__/_segment_interpolated.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_colormap.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_cubehelix.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_interpolated.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_listed.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__init__.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_interpolated.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_interpolated.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_listed.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_listed.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_palette_interpolated.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_palette_interpolated.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_segment_function.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_segment_function.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_segment_interpolated.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/__pycache__/_segment_interpolated.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/_interpolated.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/_listed.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/_palette_interpolated.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/_segment_function.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_maps/_segment_interpolated.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_palette_interpolated.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_segment_function.py
/usr/lib/python3.13/site-packages/mizani/_colors/_colormaps/_segment_interpolated.py
/usr/lib/python3.13/site-packages/mizani/_colors/_named_color_values.py
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/__init__.py
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/__pycache__
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/__pycache__/_palette.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/__pycache__/_palette.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/_palette.py
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__init__.py
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__/diverging.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__/diverging.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__/qualitative.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__/qualitative.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__/sequential.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/__pycache__/sequential.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/diverging.py
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/qualitative.py
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/brewer/sequential.py
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/other
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/other/__init__.py
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/other/__pycache__
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/other/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/other/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/other/__pycache__/qualitative.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/other/__pycache__/qualitative.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_colors/_palettes/other/qualitative.py
/usr/lib/python3.13/site-packages/mizani/_colors/hsluv.py
/usr/lib/python3.13/site-packages/mizani/_colors/named_colors.py
/usr/lib/python3.13/site-packages/mizani/_colors/utils.py
/usr/lib/python3.13/site-packages/mizani/_datetime
/usr/lib/python3.13/site-packages/mizani/_datetime/__init__.py
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/breaks.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/breaks.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/rounding.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/rounding.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/types.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/types.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/utils.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/__pycache__/utils.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_datetime/breaks.py
/usr/lib/python3.13/site-packages/mizani/_datetime/rounding.py
/usr/lib/python3.13/site-packages/mizani/_datetime/types.py
/usr/lib/python3.13/site-packages/mizani/_datetime/utils.py
/usr/lib/python3.13/site-packages/mizani/_timedelta
/usr/lib/python3.13/site-packages/mizani/_timedelta/__init__.py
/usr/lib/python3.13/site-packages/mizani/_timedelta/__pycache__
/usr/lib/python3.13/site-packages/mizani/_timedelta/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_timedelta/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_timedelta/__pycache__/breaks.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_timedelta/__pycache__/breaks.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_timedelta/__pycache__/utils.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/mizani/_timedelta/__pycache__/utils.cpython-313.pyc
/usr/lib/python3.13/site-packages/mizani/_timedelta/breaks.py
/usr/lib/python3.13/site-packages/mizani/_timedelta/utils.py
/usr/lib/python3.13/site-packages/mizani/bounds.py
/usr/lib/python3.13/site-packages/mizani/breaks.py
/usr/lib/python3.13/site-packages/mizani/formatters.py
/usr/lib/python3.13/site-packages/mizani/labels.py
/usr/lib/python3.13/site-packages/mizani/palettes.py
/usr/lib/python3.13/site-packages/mizani/py.typed
/usr/lib/python3.13/site-packages/mizani/scale.py
/usr/lib/python3.13/site-packages/mizani/transforms.py
/usr/lib/python3.13/site-packages/mizani/typing.py
/usr/lib/python3.13/site-packages/mizani/utils.py
/usr/share/doc/packages/python313-mizani
/usr/share/doc/packages/python313-mizani/README.md
/usr/share/licenses/python313-mizani
/usr/share/licenses/python313-mizani/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Mar 17 22:55:26 2026