Accepting request 629427 from devel:languages:python:numeric
- Update to version 2.2.3 * Fix import failure on BSD systems * Fix import errors in Qt shims for PyQt5 5.11 and PyQt4 4.12 * Fix import errors if bz2 module is not in standard library * Fix overflow in _path.h * Fix infinite recursion in transform repr * Fix bug with XKCD style * Remove unsafe usage of Popen OBS-URL: https://build.opensuse.org/request/show/629427 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-matplotlib?expand=0&rev=65
This commit is contained in:
parent
69222c7291
commit
59944496be
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4dc7ef528aad21f22be85e95725234c5178c0f938e2228ca76640e5e84d8cde8
|
||||
size 37317332
|
3
matplotlib-2.2.3.tar.gz
Normal file
3
matplotlib-2.2.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7355bf757ecacd5f0ac9dd9523c8e1a1103faadf8d33c22664178e17533f8ce5
|
||||
size 36839609
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 14 15:19:00 UTC 2018 - toddrme2178@gmail.com
|
||||
|
||||
- Update to version 2.2.3
|
||||
* Fix import failure on BSD systems
|
||||
* Fix import errors in Qt shims for PyQt5 5.11 and PyQt4 4.12
|
||||
* Fix import errors if bz2 module is not in standard library
|
||||
* Fix overflow in _path.h
|
||||
* Fix infinite recursion in transform repr
|
||||
* Fix bug with XKCD style
|
||||
* Remove unsafe usage of Popen
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jun 2 10:48:56 UTC 2018 - hpj@urpla.net
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%define oldpython python
|
||||
Name: python-matplotlib
|
||||
Version: 2.2.2
|
||||
Version: 2.2.3
|
||||
Release: 0
|
||||
Summary: Plotting Library for Python
|
||||
License: SUSE-Matplotlib
|
||||
@ -280,10 +280,10 @@ trap "kill $! || true" EXIT
|
||||
%endif
|
||||
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.rst PKG-INFO doc/users/license.rst
|
||||
%doc README.rst
|
||||
%doc examples/
|
||||
%doc LICENSE/
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%{python_sitearch}/matplotlib/
|
||||
%{python_sitearch}/matplotlib-%{version}-py*.egg-info
|
||||
%{python_sitearch}/matplotlib-%{version}-py*-nspkg.pth
|
||||
@ -334,18 +334,20 @@ trap "kill $! || true" EXIT
|
||||
|
||||
# Dummy package to pull in latex dependencies.
|
||||
%files %{python_files latex}
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.rst
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
|
||||
%if 0%{?is_opensuse}
|
||||
|
||||
%files %{python_files cairo}
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%{python_sitearch}/matplotlib/backends/backend_cairo.py*
|
||||
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_cairo.*.py*
|
||||
|
||||
%files %{python_files gtk3}
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%{python_sitearch}/matplotlib/backends/backend_gtk3.py*
|
||||
%{python_sitearch}/matplotlib/backends/backend_gtk3agg.py*
|
||||
%{python_sitearch}/matplotlib/backends/backend_gtk3cairo.py*
|
||||
@ -359,7 +361,8 @@ trap "kill $! || true" EXIT
|
||||
# package, and provide the -qt5 stub package which pulls in
|
||||
# the python-qt5 dependency.
|
||||
%files %{python_files qt-shared}
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%{python_sitearch}/matplotlib/backends/backend_qt5.py*
|
||||
%{python_sitearch}/matplotlib/backends/backend_qt5agg.py*
|
||||
%{python_sitearch}/matplotlib/backends/qt_compat.py*
|
||||
@ -369,24 +372,29 @@ trap "kill $! || true" EXIT
|
||||
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/qt_compat.*.py*
|
||||
|
||||
%files %{python_files qt4}
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%{python_sitearch}/matplotlib/backends/backend_qt4.py*
|
||||
%{python_sitearch}/matplotlib/backends/backend_qt4agg.py*
|
||||
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_qt4.*.py*
|
||||
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_qt4agg.*.py*
|
||||
|
||||
%files %{python_files qt5}
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%doc README.rst
|
||||
|
||||
%files %{python_files tk}
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%{python_sitearch}/matplotlib/backends/backend_tkagg.py*
|
||||
%{python_sitearch}/matplotlib/backends/tkagg.py*
|
||||
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_tkagg.*.py*
|
||||
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/tkagg.*.py*
|
||||
|
||||
%files %{python_files web}
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%{python_sitearch}/matplotlib/backends/backend_webagg.py*
|
||||
%{python_sitearch}/matplotlib/backends/backend_webagg_core.py*
|
||||
%{python_sitearch}/matplotlib/backends/web_backend/
|
||||
@ -394,7 +402,8 @@ trap "kill $! || true" EXIT
|
||||
%pycache_only %{python_sitearch}/matplotlib/backends/__pycache__/backend_webagg_core.*.py*
|
||||
|
||||
%files -n %{python2_prefix}-matplotlib-wx
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE/
|
||||
%license doc/users/license.rst
|
||||
%{python2_sitearch}/matplotlib/backends/wx_compat.py*
|
||||
%{python2_sitearch}/matplotlib/backends/backend_wx.py*
|
||||
%{python2_sitearch}/matplotlib/backends/backend_wxagg.py*
|
||||
|
Loading…
Reference in New Issue
Block a user