Sync from SUSE:SLFO:Main python-matplotlib revision 2dca23855452e8bf139666ad5680b412

This commit is contained in:
2025-04-08 14:45:57 +02:00
parent dd564bb124
commit 3e6f241dd7
4 changed files with 89 additions and 12 deletions

BIN
matplotlib-3.10.1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

BIN
matplotlib-3.9.2.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@@ -1,3 +1,56 @@
-------------------------------------------------------------------
Thu Apr 3 15:16:55 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>
- Disable two more tests in SLFO that use Qt bindings.
-------------------------------------------------------------------
Mon Mar 24 12:24:37 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>
- We're removing all python Qt bindings from SLE16, so don't build
the qt backend nor test it there.
-------------------------------------------------------------------
Fri Mar 21 08:55:15 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Update to 3.10.1
* Respect array alpha with interpolation_stage='rgba'
* Remove md5 usage to prevent issues on FIPS enabled systems
* Fix pyplot.matshow figure handling
* Fix modifying Axes' position also alters the original Bbox object
used for initialization
* Fix title position for polar plots
* Add version gate to GTK4 calls when necessary
* Raise warning if both c and facecolors are used in scatter plot
- Drop merged matplotlib-pr29631-install-test-ipynb.patch
- Skip test failing with texlive 2025
-------------------------------------------------------------------
Sun Feb 16 20:07:11 UTC 2025 - Ben Greiner <code@bnavigator.de>
- Fix testfiles
* Move extra files tagged for tests to testdata package
* Add matplotlib-pr29631-install-test-ipynb.patch
gh#matplotlib/matplotlib#29631
-------------------------------------------------------------------
Mon Feb 3 11:21:46 UTC 2025 - Markéta Machová <mmachova@suse.com>
- update to 3.10.0
* Preliminary support for free-threaded CPython 3.13
* New more-accessible color cycle
* Dark-mode diverging colormaps
* Exception handling control
* InsetIndicator artist
* FillBetweenPolyCollection
* Fill between 3D lines
* Data in 3D plots can now be dynamically clipped to the axes
view limits
* Rotating 3d plots with the mouse
* Increased Figure limits with Agg renderer
* Subfigures no longer provisional
* Subfigures are now added in row-major order
* Improve compatibility with pytest 8.2.0
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Oct 24 19:04:27 UTC 2024 - Dirk Müller <dmueller@suse.com> Thu Oct 24 19:04:27 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-matplotlib # spec file for package python-matplotlib
# #
# Copyright (c) 2024 SUSE LLC # Copyright (c) 2025 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -29,9 +29,16 @@ ExclusiveArch: x86_64 aarch64
%bcond_with test %bcond_with test
%endif %endif
%bcond_with ringdisabled %bcond_with ringdisabled
%if 0%{?suse_version} == 1600 && !0%{?is_opensuse}
%bcond_with qt
%else
%bcond_without qt
%endif
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-matplotlib%{psuffix} Name: python-matplotlib%{psuffix}
Version: 3.9.2 Version: 3.10.1
Release: 0 Release: 0
Summary: Plotting Library for Python Summary: Plotting Library for Python
License: SUSE-Matplotlib License: SUSE-Matplotlib
@@ -43,7 +50,7 @@ Source98: https://github.com/qhull/qhull/archive/v8.0.2/qhull-8.0.2.tar.gz
Source99: https://downloads.sourceforge.net/project/freetype/freetype2/2.6.1/freetype-2.6.1.tar.gz Source99: https://downloads.sourceforge.net/project/freetype/freetype2/2.6.1/freetype-2.6.1.tar.gz
Source100: python-matplotlib.rpmlintrc Source100: python-matplotlib.rpmlintrc
# PATCH-FEATURE-OPENSUSE matplotlib-meson-options-opensuse.patch code@bnavigator.de -- Custom build options for meson-python # PATCH-FEATURE-OPENSUSE matplotlib-meson-options-opensuse.patch code@bnavigator.de -- Custom build options for meson-python
Patch0: matplotlib-meson-options-opensuse.patch Patch1: matplotlib-meson-options-opensuse.patch
Recommends: ghostscript Recommends: ghostscript
Recommends: libxml2-tools Recommends: libxml2-tools
Recommends: poppler-tools Recommends: poppler-tools
@@ -80,9 +87,6 @@ Requires: python-numpy >= 1.23
Requires: python-packaging >= 20.0 Requires: python-packaging >= 20.0
Requires: python-pyparsing > 2.3.1 Requires: python-pyparsing > 2.3.1
Requires: python-python-dateutil >= 2.7 Requires: python-python-dateutil >= 2.7
%if 0%{?python_version_nodots} < 310
Requires: python-importlib-resources >= 3.2.0
%endif
# /SECTION # /SECTION
# SECTION test # SECTION test
%if %{with test} %if %{with test}
@@ -90,7 +94,9 @@ BuildRequires: %{python_module matplotlib = %{version}}
BuildRequires: %{python_module matplotlib-cairo = %{version}} BuildRequires: %{python_module matplotlib-cairo = %{version}}
BuildRequires: %{python_module matplotlib-gtk3 = %{version}} BuildRequires: %{python_module matplotlib-gtk3 = %{version}}
BuildRequires: %{python_module matplotlib-gtk4 = %{version}} BuildRequires: %{python_module matplotlib-gtk4 = %{version}}
%if %{with qt}
BuildRequires: %{python_module matplotlib-qt5 = %{version}} BuildRequires: %{python_module matplotlib-qt5 = %{version}}
%endif
BuildRequires: %{python_module matplotlib-testdata = %{version}} BuildRequires: %{python_module matplotlib-testdata = %{version}}
BuildRequires: %{python_module matplotlib-tk = %{version}} BuildRequires: %{python_module matplotlib-tk = %{version}}
BuildRequires: %{python_module matplotlib-web = %{version}} BuildRequires: %{python_module matplotlib-web = %{version}}
@@ -123,6 +129,7 @@ BuildRequires: %{python_module nbformat if %python-base >= 3.10}
%endif %endif
# /SECTION nbagg # /SECTION nbagg
# SECTION qt backends: Only test PyQt5 in Minimal-X # SECTION qt backends: Only test PyQt5 in Minimal-X
%if %{with qt}
BuildRequires: %{python_module qt5} BuildRequires: %{python_module qt5}
%if %{without ringdisabled} %if %{without ringdisabled}
%if 0%{?suse_version} > %SLE_VERSION %if 0%{?suse_version} > %SLE_VERSION
@@ -131,6 +138,7 @@ BuildRequires: python3-pyside2
BuildRequires: python3-pyside6 BuildRequires: python3-pyside6
%endif %endif
%endif %endif
%endif
# /SECTION qt # /SECTION qt
# /SECTION test # /SECTION test
%endif %endif
@@ -228,6 +236,7 @@ BuildArch: noarch
This package allows %{name} to display latex in plots This package allows %{name} to display latex in plots
and figures. and figures.
%if %{with qt}
%package qt %package qt
Summary: Qt backend for %{name} Summary: Qt backend for %{name}
Requires: %{name} = %{version} Requires: %{name} = %{version}
@@ -242,6 +251,7 @@ Obsoletes: %{name}-qt5 < 3.8.2
This package includes the Qt-based backend This package includes the Qt-based backend
for the %{name} plotting package for the %{name} plotting package
PyQt5, PyQt6, Pyside2 or Pyside 6 may be used PyQt5, PyQt6, Pyside2 or Pyside 6 may be used
%endif
%package testdata %package testdata
Summary: Test data for %{name} Summary: Test data for %{name}
@@ -341,12 +351,17 @@ skip_tests+=" or test_compressed1"
# image comparison failures due to precisions dicrepancies to the x86 produced references # image comparison failures due to precisions dicrepancies to the x86 produced references
skip_tests+=" or png or svg or pdf" skip_tests+=" or png or svg or pdf"
%endif %endif
# test failure with texlive 2025 https://github.com/matplotlib/matplotlib/issues/29790
skip_tests+=" or (test_backend_pgf and test_rcupdate)"
# Fails in SLFO:Main # Fails in SLFO:Main
%if 0%{?suse_version} <= %SLE_VERSION %if 0%{?suse_version} <= %SLE_VERSION
# Timeout, this test freeze forever # Timeout, this test freeze forever
skip_tests+=" or test_determinism" skip_tests+=" or test_determinism"
skip_tests+=" or test_pcolormesh[png] or test_pcolormesh_alpha[png]" skip_tests+=" or test_pcolormesh[png] or test_pcolormesh_alpha[png]"
# The next two tests fail when there's no python qt5 bindings, as in SLFO:Main
skip_tests+=" or test_span_selector_animated_artists_callback"
skip_tests+=" or test_qt_missing"
%endif %endif
# backend tests landing in the wrong xdist process may fail with an error. Test them without xdist. # backend tests landing in the wrong xdist process may fail with an error. Test them without xdist.
@@ -426,11 +441,14 @@ $python -m pytest --pyargs matplotlib.tests \
%exclude %{python_sitearch}/matplotlib/backends/__pycache__/backend_wxagg.*.py* %exclude %{python_sitearch}/matplotlib/backends/__pycache__/backend_wxagg.*.py*
%exclude %{python_sitearch}/matplotlib/backends/__pycache__/backend_wxcairo.*.py* %exclude %{python_sitearch}/matplotlib/backends/__pycache__/backend_wxcairo.*.py*
%exclude %{python_sitearch}/matplotlib/backends/__pycache__/qt_compat.*.py* %exclude %{python_sitearch}/matplotlib/backends/__pycache__/qt_compat.*.py*
%exclude %{python_sitearch}/matplotlib/tests/*.pfb
%exclude %{python_sitearch}/matplotlib/tests/*.ttf
%exclude %{python_sitearch}/matplotlib/tests/*.ipynb
%exclude %{python_sitearch}/matplotlib/tests/baseline_images %exclude %{python_sitearch}/matplotlib/tests/baseline_images
%exclude %{python_sitearch}/matplotlib/tests/tinypages
%exclude %{python_sitearch}/mpl_toolkits/axes_grid1/tests/baseline_images %exclude %{python_sitearch}/mpl_toolkits/axes_grid1/tests/baseline_images
%exclude %{python_sitearch}/mpl_toolkits/axisartist/tests/baseline_images %exclude %{python_sitearch}/mpl_toolkits/axisartist/tests/baseline_images
%exclude %{python_sitearch}/mpl_toolkits/mplot3d/tests/baseline_images %exclude %{python_sitearch}/mpl_toolkits/mplot3d/tests/baseline_images
%exclude %{python_sitearch}/matplotlib/tests/tinypages
# Dummy package to pull in latex dependencies. # Dummy package to pull in latex dependencies.
%files %{python_files latex} %files %{python_files latex}
@@ -464,13 +482,14 @@ $python -m pytest --pyargs matplotlib.tests \
%{python_sitearch}/matplotlib/backends/_backend_gtk.py %{python_sitearch}/matplotlib/backends/_backend_gtk.py
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/_backend_gtk.*.py* %pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/_backend_gtk.*.py*
%if 0%{?suse_version} > %SLE_VERSION && 0%{?python_version_nodots} >= 310 %if 0%{?suse_version} > %SLE_VERSION
%files %{python_files nbagg} %files %{python_files nbagg}
%license LICENSE/ %license LICENSE/
%{python_sitearch}/matplotlib/backends/backend_nbagg.py* %{python_sitearch}/matplotlib/backends/backend_nbagg.py*
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_nbagg.*.py* %pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_nbagg.*.py*
%endif %endif
%if %{with qt}
%files %{python_files qt} %files %{python_files qt}
%license LICENSE/ %license LICENSE/
%{python_sitearch}/matplotlib/backends/backend_qt5.py* %{python_sitearch}/matplotlib/backends/backend_qt5.py*
@@ -482,14 +501,19 @@ $python -m pytest --pyargs matplotlib.tests \
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_qt5agg.*.py* %pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_qt5agg.*.py*
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_qt5cairo.*.py* %pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_qt5cairo.*.py*
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/qt_compat.*.py* %pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/qt_compat.*.py*
%endif
%files %{python_files testdata} %files %{python_files testdata}
%license LICENSE/ %license LICENSE/
%doc lib/matplotlib/tests/README
%{python_sitearch}/matplotlib/tests/*.pfb
%{python_sitearch}/matplotlib/tests/*.ttf
%{python_sitearch}/matplotlib/tests/*.ipynb
%{python_sitearch}/matplotlib/tests/baseline_images %{python_sitearch}/matplotlib/tests/baseline_images
%{python_sitearch}/matplotlib/tests/tinypages
%{python_sitearch}/mpl_toolkits/axes_grid1/tests/baseline_images %{python_sitearch}/mpl_toolkits/axes_grid1/tests/baseline_images
%{python_sitearch}/mpl_toolkits/axisartist/tests/baseline_images %{python_sitearch}/mpl_toolkits/axisartist/tests/baseline_images
%{python_sitearch}/mpl_toolkits/mplot3d/tests/baseline_images %{python_sitearch}/mpl_toolkits/mplot3d/tests/baseline_images
%{python_sitearch}/matplotlib/tests/tinypages
%exclude %{python_sitearch}/matplotlib/tests/tinypages/.gitignore %exclude %{python_sitearch}/matplotlib/tests/tinypages/.gitignore
%exclude %{python_sitearch}/matplotlib/tests/tinypages/_static/.gitignore %exclude %{python_sitearch}/matplotlib/tests/tinypages/_static/.gitignore