pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics/py-matplotlib



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Oct 13 16:04:39 UTC 2022

Modified Files:
        pkgsrc/graphics/py-matplotlib: Makefile PLIST distinfo

Log Message:
py-matplotlib: updated to 3.6.1

Matplotlib 3.6.0

* Figure and Axes creation / management
    o |subplots|, |subplot_mosaic| accept /height_ratios/ and
      /width_ratios/ arguments
    o Constrained layout is no longer considered experimental
    o New |layout_engine| module
    o Compressed layout added for fixed-aspect ratio Axes
    o Layout engines may now be removed
    o |Axes.inset_axes| flexibility
    o WebP is now a supported output format
    o Garbage collection is no longer run on figure close
* Plotting methods
    o Striped lines (experimental)
    o Custom cap widths in box and whisker plots in |bxp| and |boxplot|
    o Easier labelling of bars in bar plot
    o New style format string for colorbar ticks
    o Linestyles for negative contours may be set individually
    o Improved quad contour calculations via ContourPy
    o |errorbar| supports /markerfacecoloralt/
    o |streamplot| can disable streamline breaks
    o New axis scale |asinh| (experimental)
    o |stairs(..., fill=True)| hides patch edge by setting linewidth
    o Fix the dash offset of the |Patch| class
    o |Rectangle| patch rotation point
* Colors and colormaps
    o Color sequence registry
    o Colormap method for creating a different lookup table size
    o Setting norms with strings
* Titles, ticks, and labels
    o |plt.xticks| and |plt.yticks| support /minor/ keyword argument
* Legends
    o Legend can control alignment of title and handles
    o /ncol/ keyword argument to |legend| renamed to /ncols/
* Markers
    o |marker| can now be set to the string "none"
    o Customization of |MarkerStyle| join and cap style
* Fonts and Text
    o Font fallback
    o List of available font names
    o |math_to_image| now has a /color/ keyword argument
    o Active URL area rotates with link text
* rcParams improvements
    o Allow setting figure label size and weight globally and
      separately from title
    o Mathtext parsing can be disabled globally
    o Double-quoted strings in matplotlibrc
* 3D Axes improvements
    o Standardized views for primary plane viewing angles
    o Custom focal length for 3D camera
    o 3D plots gained a 3rd "roll" viewing angle
    o Equal aspect ratio for 3D plots
* Interactive tool improvements
    o Rotation, aspect ratio correction and add/remove state
    o |MultiCursor| now supports Axes split over multiple figures
    o |PolygonSelector| bounding boxes
    o Setting |PolygonSelector| vertices
    o |SpanSelector| widget can now be snapped to specified values
    o More toolbar icons are styled for dark themes
* Platform-specific changes
    o Wx backend uses standard toolbar
    o Improvements to macosx backend
        + Modifier keys handled more consistently
        + |savefig.directory| rcParam support
        + |figure.raise_window| rcParam support
        + Full-screen toggle support
        + Improved animation and blitting support
    o macOS application icon applied on Qt backend
    o New minimum macOS version
    o Windows on ARM support


To generate a diff of this commit:
cvs rdiff -u -r1.76 -r1.77 pkgsrc/graphics/py-matplotlib/Makefile
cvs rdiff -u -r1.28 -r1.29 pkgsrc/graphics/py-matplotlib/PLIST
cvs rdiff -u -r1.49 -r1.50 pkgsrc/graphics/py-matplotlib/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/py-matplotlib/Makefile
diff -u pkgsrc/graphics/py-matplotlib/Makefile:1.76 pkgsrc/graphics/py-matplotlib/Makefile:1.77
--- pkgsrc/graphics/py-matplotlib/Makefile:1.76 Mon Sep 12 08:08:01 2022
+++ pkgsrc/graphics/py-matplotlib/Makefile      Thu Oct 13 16:04:39 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.76 2022/09/12 08:08:01 adam Exp $
+# $NetBSD: Makefile,v 1.77 2022/10/13 16:04:39 adam Exp $
 
-DISTNAME=      matplotlib-3.5.3
+DISTNAME=      matplotlib-3.6.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    graphics python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=m/matplotlib/}
@@ -12,6 +12,7 @@ COMMENT=      Matlab-style plotting package f
 
 DEPENDS+=      ${PYPKGPREFIX}-Pillow>=6.2.0:../../graphics/py-Pillow
 DEPENDS+=      ${PYPKGPREFIX}-cairo-[0-9]*:../../graphics/py-cairo
+DEPENDS+=      ${PYPKGPREFIX}-contourpy>=1.0.1:../../graphics/py-contourpy
 DEPENDS+=      ${PYPKGPREFIX}-cycler>=0.10:../../graphics/py-cycler
 DEPENDS+=      ${PYPKGPREFIX}-dateutil>=2.7:../../time/py-dateutil
 DEPENDS+=      ${PYPKGPREFIX}-fonttools>=4.22.0:../../fonts/py-fonttools
@@ -19,8 +20,7 @@ DEPENDS+=     ${PYPKGPREFIX}-kiwisolver>=1.0
 DEPENDS+=      ${PYPKGPREFIX}-packaging>=20.0:../../devel/py-packaging
 DEPENDS+=      ${PYPKGPREFIX}-pyparsing>=2.2.1:../../devel/py-pyparsing
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-certifi>=2020.06.20:../../security/py-certifi
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-setuptools_scm>=4:../../devel/py-setuptools_scm
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-setuptools_scm_git_archive-[0-9]*:../../devel/py-setuptools_scm_git_archive
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-setuptools_scm>=7:../../devel/py-setuptools_scm
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 
 USE_LANGUAGES= c c++

Index: pkgsrc/graphics/py-matplotlib/PLIST
diff -u pkgsrc/graphics/py-matplotlib/PLIST:1.28 pkgsrc/graphics/py-matplotlib/PLIST:1.29
--- pkgsrc/graphics/py-matplotlib/PLIST:1.28    Thu Jun 16 15:24:40 2022
+++ pkgsrc/graphics/py-matplotlib/PLIST Thu Oct 13 16:04:39 2022
@@ -1,14 +1,17 @@
-@comment $NetBSD: PLIST,v 1.28 2022/06/16 15:24:40 ryoon Exp $
-${PYSITELIB}/${EGG_NAME}-nspkg.pth
+@comment $NetBSD: PLIST,v 1.29 2022/10/13 16:04:39 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
 ${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/${EGG_NAME}-nspkg.pth
 ${PYSITELIB}/matplotlib/__init__.py
 ${PYSITELIB}/matplotlib/__init__.pyc
 ${PYSITELIB}/matplotlib/__init__.pyo
+${PYSITELIB}/matplotlib/_afm.py
+${PYSITELIB}/matplotlib/_afm.pyc
+${PYSITELIB}/matplotlib/_afm.pyo
 ${PYSITELIB}/matplotlib/_animation_data.py
 ${PYSITELIB}/matplotlib/_animation_data.pyc
 ${PYSITELIB}/matplotlib/_animation_data.pyo
@@ -34,10 +37,15 @@ ${PYSITELIB}/matplotlib/_color_data.pyo
 ${PYSITELIB}/matplotlib/_constrained_layout.py
 ${PYSITELIB}/matplotlib/_constrained_layout.pyc
 ${PYSITELIB}/matplotlib/_constrained_layout.pyo
-${PYSITELIB}/matplotlib/_contour.so
+${PYSITELIB}/matplotlib/_docstring.py
+${PYSITELIB}/matplotlib/_docstring.pyc
+${PYSITELIB}/matplotlib/_docstring.pyo
 ${PYSITELIB}/matplotlib/_enums.py
 ${PYSITELIB}/matplotlib/_enums.pyc
 ${PYSITELIB}/matplotlib/_enums.pyo
+${PYSITELIB}/matplotlib/_fontconfig_pattern.py
+${PYSITELIB}/matplotlib/_fontconfig_pattern.pyc
+${PYSITELIB}/matplotlib/_fontconfig_pattern.pyo
 ${PYSITELIB}/matplotlib/_image.so
 ${PYSITELIB}/matplotlib/_internal_utils.py
 ${PYSITELIB}/matplotlib/_internal_utils.pyc
@@ -59,8 +67,17 @@ ${PYSITELIB}/matplotlib/_qhull.so
 ${PYSITELIB}/matplotlib/_text_helpers.py
 ${PYSITELIB}/matplotlib/_text_helpers.pyc
 ${PYSITELIB}/matplotlib/_text_helpers.pyo
+${PYSITELIB}/matplotlib/_tight_bbox.py
+${PYSITELIB}/matplotlib/_tight_bbox.pyc
+${PYSITELIB}/matplotlib/_tight_bbox.pyo
+${PYSITELIB}/matplotlib/_tight_layout.py
+${PYSITELIB}/matplotlib/_tight_layout.pyc
+${PYSITELIB}/matplotlib/_tight_layout.pyo
 ${PYSITELIB}/matplotlib/_tri.so
 ${PYSITELIB}/matplotlib/_ttconv.so
+${PYSITELIB}/matplotlib/_type1font.py
+${PYSITELIB}/matplotlib/_type1font.pyc
+${PYSITELIB}/matplotlib/_type1font.pyo
 ${PYSITELIB}/matplotlib/_version.py
 ${PYSITELIB}/matplotlib/_version.pyc
 ${PYSITELIB}/matplotlib/_version.pyo
@@ -240,9 +257,6 @@ ${PYSITELIB}/matplotlib/category.pyo
 ${PYSITELIB}/matplotlib/cbook/__init__.py
 ${PYSITELIB}/matplotlib/cbook/__init__.pyc
 ${PYSITELIB}/matplotlib/cbook/__init__.pyo
-${PYSITELIB}/matplotlib/cbook/deprecation.py
-${PYSITELIB}/matplotlib/cbook/deprecation.pyc
-${PYSITELIB}/matplotlib/cbook/deprecation.pyo
 ${PYSITELIB}/matplotlib/cm.py
 ${PYSITELIB}/matplotlib/cm.pyc
 ${PYSITELIB}/matplotlib/cm.pyo
@@ -289,6 +303,9 @@ ${PYSITELIB}/matplotlib/hatch.pyo
 ${PYSITELIB}/matplotlib/image.py
 ${PYSITELIB}/matplotlib/image.pyc
 ${PYSITELIB}/matplotlib/image.pyo
+${PYSITELIB}/matplotlib/layout_engine.py
+${PYSITELIB}/matplotlib/layout_engine.pyc
+${PYSITELIB}/matplotlib/layout_engine.pyo
 ${PYSITELIB}/matplotlib/legend.py
 ${PYSITELIB}/matplotlib/legend.pyc
 ${PYSITELIB}/matplotlib/legend.pyo
@@ -439,7 +456,6 @@ ${PYSITELIB}/matplotlib/mpl-data/images/
 ${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.pdf
 ${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.png
 ${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.svg
-${PYSITELIB}/matplotlib/mpl-data/images/matplotlib_128.ppm
 ${PYSITELIB}/matplotlib/mpl-data/images/matplotlib_large.png
 ${PYSITELIB}/matplotlib/mpl-data/images/move-symbolic.svg
 ${PYSITELIB}/matplotlib/mpl-data/images/move.pdf
@@ -465,6 +481,7 @@ ${PYSITELIB}/matplotlib/mpl-data/matplot
 ${PYSITELIB}/matplotlib/mpl-data/plot_directive/plot_directive.css
 ${PYSITELIB}/matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png
 ${PYSITELIB}/matplotlib/mpl-data/sample_data/README.txt
+${PYSITELIB}/matplotlib/mpl-data/sample_data/Stocks.csv
 ${PYSITELIB}/matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy
 ${PYSITELIB}/matplotlib/mpl-data/sample_data/data_x_x2_x3.csv
 ${PYSITELIB}/matplotlib/mpl-data/sample_data/eeg.dat
@@ -489,22 +506,22 @@ ${PYSITELIB}/matplotlib/mpl-data/styleli
 ${PYSITELIB}/matplotlib/mpl-data/stylelib/fivethirtyeight.mplstyle
 ${PYSITELIB}/matplotlib/mpl-data/stylelib/ggplot.mplstyle
 ${PYSITELIB}/matplotlib/mpl-data/stylelib/grayscale.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-bright.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-colorblind.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-dark-palette.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-dark.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-darkgrid.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-deep.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-muted.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-notebook.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-paper.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-pastel.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-poster.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-talk.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-ticks.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-white.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-whitegrid.mplstyle
-${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-bright.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-colorblind.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-dark-palette.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-dark.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-darkgrid.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-deep.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-muted.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-notebook.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-paper.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-pastel.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-poster.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-talk.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-ticks.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-white.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8-whitegrid.mplstyle
+${PYSITELIB}/matplotlib/mpl-data/stylelib/seaborn-v0_8.mplstyle
 ${PYSITELIB}/matplotlib/mpl-data/stylelib/tableau-colorblind10.mplstyle
 ${PYSITELIB}/matplotlib/offsetbox.py
 ${PYSITELIB}/matplotlib/offsetbox.pyc
@@ -575,6 +592,9 @@ ${PYSITELIB}/matplotlib/table.pyo
 ${PYSITELIB}/matplotlib/testing/__init__.py
 ${PYSITELIB}/matplotlib/testing/__init__.pyc
 ${PYSITELIB}/matplotlib/testing/__init__.pyo
+${PYSITELIB}/matplotlib/testing/_markers.py
+${PYSITELIB}/matplotlib/testing/_markers.pyc
+${PYSITELIB}/matplotlib/testing/_markers.pyo
 ${PYSITELIB}/matplotlib/testing/compare.py
 ${PYSITELIB}/matplotlib/testing/compare.pyc
 ${PYSITELIB}/matplotlib/testing/compare.pyo
@@ -674,6 +694,9 @@ ${PYSITELIB}/matplotlib/tests/test_backe
 ${PYSITELIB}/matplotlib/tests/test_backend_svg.py
 ${PYSITELIB}/matplotlib/tests/test_backend_svg.pyc
 ${PYSITELIB}/matplotlib/tests/test_backend_svg.pyo
+${PYSITELIB}/matplotlib/tests/test_backend_template.py
+${PYSITELIB}/matplotlib/tests/test_backend_template.pyc
+${PYSITELIB}/matplotlib/tests/test_backend_template.pyo
 ${PYSITELIB}/matplotlib/tests/test_backend_tk.py
 ${PYSITELIB}/matplotlib/tests/test_backend_tk.pyc
 ${PYSITELIB}/matplotlib/tests/test_backend_tk.pyo
@@ -728,6 +751,9 @@ ${PYSITELIB}/matplotlib/tests/test_dates
 ${PYSITELIB}/matplotlib/tests/test_determinism.py
 ${PYSITELIB}/matplotlib/tests/test_determinism.pyc
 ${PYSITELIB}/matplotlib/tests/test_determinism.pyo
+${PYSITELIB}/matplotlib/tests/test_doc.py
+${PYSITELIB}/matplotlib/tests/test_doc.pyc
+${PYSITELIB}/matplotlib/tests/test_doc.pyo
 ${PYSITELIB}/matplotlib/tests/test_dviread.py
 ${PYSITELIB}/matplotlib/tests/test_dviread.pyc
 ${PYSITELIB}/matplotlib/tests/test_dviread.pyo
@@ -740,6 +766,9 @@ ${PYSITELIB}/matplotlib/tests/test_font_
 ${PYSITELIB}/matplotlib/tests/test_fontconfig_pattern.py
 ${PYSITELIB}/matplotlib/tests/test_fontconfig_pattern.pyc
 ${PYSITELIB}/matplotlib/tests/test_fontconfig_pattern.pyo
+${PYSITELIB}/matplotlib/tests/test_ft2font.py
+${PYSITELIB}/matplotlib/tests/test_ft2font.pyc
+${PYSITELIB}/matplotlib/tests/test_ft2font.pyo
 ${PYSITELIB}/matplotlib/tests/test_getattr.py
 ${PYSITELIB}/matplotlib/tests/test_getattr.pyc
 ${PYSITELIB}/matplotlib/tests/test_getattr.pyo
@@ -839,6 +868,9 @@ ${PYSITELIB}/matplotlib/tests/test_texma
 ${PYSITELIB}/matplotlib/tests/test_text.py
 ${PYSITELIB}/matplotlib/tests/test_text.pyc
 ${PYSITELIB}/matplotlib/tests/test_text.pyo
+${PYSITELIB}/matplotlib/tests/test_textpath.py
+${PYSITELIB}/matplotlib/tests/test_textpath.pyc
+${PYSITELIB}/matplotlib/tests/test_textpath.pyo
 ${PYSITELIB}/matplotlib/tests/test_ticker.py
 ${PYSITELIB}/matplotlib/tests/test_ticker.pyc
 ${PYSITELIB}/matplotlib/tests/test_ticker.pyo
@@ -923,54 +955,6 @@ ${PYSITELIB}/matplotlib/units.pyo
 ${PYSITELIB}/matplotlib/widgets.py
 ${PYSITELIB}/matplotlib/widgets.pyc
 ${PYSITELIB}/matplotlib/widgets.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/__init__.py
-${PYSITELIB}/mpl_toolkits/axes_grid/__init__.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/__init__.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.py
-${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.py
-${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.py
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.py
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.py
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.py
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.py
-${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.py
-${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/axislines.py
-${PYSITELIB}/mpl_toolkits/axes_grid/axislines.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/axislines.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.py
-${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.py
-${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.py
-${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.py
-${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.py
-${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.pyo
-${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.py
-${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.pyc
-${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.pyo
 ${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.py
 ${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.pyc
 ${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.pyo

Index: pkgsrc/graphics/py-matplotlib/distinfo
diff -u pkgsrc/graphics/py-matplotlib/distinfo:1.49 pkgsrc/graphics/py-matplotlib/distinfo:1.50
--- pkgsrc/graphics/py-matplotlib/distinfo:1.49 Mon Sep 12 08:08:01 2022
+++ pkgsrc/graphics/py-matplotlib/distinfo      Thu Oct 13 16:04:39 2022
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.49 2022/09/12 08:08:01 adam Exp $
+$NetBSD: distinfo,v 1.50 2022/10/13 16:04:39 adam Exp $
 
-BLAKE2s (matplotlib-3.5.3.tar.gz) = dbf87c63725bce41f4822a48059d825438bb11ae21c527e99e93c50c609c8867
-SHA512 (matplotlib-3.5.3.tar.gz) = f431d3046e9c5fbe5d44a16a762e9a178ba34380974964660eaf3681671178866a63b3bad9aad8d3ad423926f7db2965d514e9b1489e3a824a4532a01f0e0670
-Size (matplotlib-3.5.3.tar.gz) = 35236343 bytes
+BLAKE2s (matplotlib-3.6.1.tar.gz) = d0208372d425f7b714a6bb0d86986366e885106077febd61a51bb97efeb52561
+SHA512 (matplotlib-3.6.1.tar.gz) = 40b148fe4574eea88e7e74c2844a4811c71651602bd7e0a863482571bfa216c01d4f5fcd36add14af82c5cacdb6ae9d441ed251ee5239d06bcc8d40c9ee8841b
+Size (matplotlib-3.6.1.tar.gz) = 35826557 bytes
 SHA1 (patch-mplsetup.cfg) = 06bf93f112ab4ed4604179c1cc7fd2bdee62b56d



Home | Main Index | Thread Index | Old Index