1
0

Accepting request 651236 from home:apersaud:branches:devel:languages:python:numeric

update without running spec-cleaner, so hopefully everything should be OK

- update to version 3.0.2:
  * Un-breaks basemap which was broken by partially restoring private
    APIs for cartopy.
  * Fixes bug in warning code when used in an embedded context.
  * Fixes crash when using Tk and closing the first open window before
    showing it
  * Many documentation improvements.
  * Restore a corner case on ColorBar tick usage.
  * Change the default behavior of `matplotlib.use` to silently allow
    more 'safe' switching after auto-discovery, but before starting an
    event loop.
  * Improvements to bounding box calculations.
  * Provide the correct length for RcParams instances.

OBS-URL: https://build.opensuse.org/request/show/651236
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-matplotlib?expand=0&rev=9
This commit is contained in:
Tomáš Chvátal
2018-11-23 08:27:47 +00:00
committed by Git OBS Bridge
parent 9b9055bf94
commit 513d506e34
4 changed files with 26 additions and 9 deletions

View File

@@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -24,12 +24,12 @@
%define oldpython python
%define skip_python2 1
Name: python-matplotlib
Version: 3.0.1
Version: 3.0.2
Release: 0
Summary: Plotting Library for Python
License: SUSE-Matplotlib
Group: Development/Libraries/Python
Url: http://matplotlib.org
URL: http://matplotlib.org
Source: https://files.pythonhosted.org/packages/source/m/matplotlib/matplotlib-%{version}.tar.gz
Source1: matplotlib-setup.cfg
BuildRequires: c++_compiler
@@ -132,7 +132,7 @@ Requires: %{name} = %{version}
Requires: python-cairocffi
%description cairo
This package includes the non-interactive Cairo-based backend
This package includes the non-interactive Cairo-based backend
for the %{name} plotting package
%package gtk3
@@ -170,7 +170,7 @@ Group: Development/Libraries/Python
Requires: %{name} = %{version}
%description qt-shared
This package includes files needed by both the Qt4-based pyqt4 and
This package includes files needed by both the Qt4-based pyqt4 and
pyside backends and the Qt5-based pyqt5 backend for the %{name}
plotting package
@@ -266,7 +266,7 @@ $python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitearch}/m
%if %{with tests}
%check
export DISPLAY=:42
/usr/bin/Xvfb :42 -screen 0 1024x768x24 >& /tmp/Xvfb.log &
%{_bindir}/Xvfb :42 -screen 0 1024x768x24 >& /tmp/Xvfb.log &
trap "kill $! || true" EXIT
%python_expand PYTHONPATH=%{buildroot}%{$python_sitearch} $python ./tests.py --no-network --recursionlimit=5000
%endif