Sync from SUSE:SLFO:Main python-matplotlib-inline revision 1c781d3768f000ae2ae91b19e03e53da

This commit is contained in:
Adrian Schröter 2024-05-03 21:29:06 +02:00
commit ddf61583dc
5 changed files with 137 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

3
_multibuild Normal file
View File

@ -0,0 +1,3 @@
<multibuild>
<package>test</package>
</multibuild>

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

Binary file not shown.

View File

@ -0,0 +1,31 @@
-------------------------------------------------------------------
Sat Aug 20 14:59:06 UTC 2022 - Arun Persaud <arun@gmx.de>
- specfile:
* update copyright year
- update to version 0.1.6:
* Return manager instead of None
- changes from version 0.1.5:
* replace 0.1.4 on pypi, no changes
- changes from version 0.1.4:
* Fix: always clear _draw_called
* Move draw_if_interactive logic to new_figure_manager_given_figure.
* Remove matplotlib rc overrides.
* Create __version__ attribute
-------------------------------------------------------------------
Sun Oct 17 19:39:17 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Update to version 0.3
* Update project URL
-------------------------------------------------------------------
Sat Jun 26 15:13:49 UTC 2021 - Ben Greiner <code@bnavigator.de>
- initial specfile for version 0.2
- new requirement for IPython 7.25 and IPyKernel 6
- multibuild for rudimentary test in order to avoid depcycle with
ipython

View File

@ -0,0 +1,77 @@
#
# spec file
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
%{?!python_module:%define python_module() python3-%{**}}
%define skip_python2 1
Name: python-matplotlib-inline%{psuffix}
Version: 0.1.6
Release: 0
Summary: Inline Matplotlib backend for Jupyter
License: BSD-3-Clause
URL: https://github.com/ipython/matplotlib-inline
Source: https://files.pythonhosted.org/packages/source/m/matplotlib-inline/matplotlib-inline-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module traitlets}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-traitlets
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module ipython}
BuildRequires: %{python_module matplotlib}
%endif
%python_subpackages
%description
Matplotlib Inline Back-end for IPython and Jupyter
%prep
%setup -q -n matplotlib-inline-%{version}
%build
%python_build
%install
%if ! %{with test}
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%if %{with test}
%check
# this is upstream's only CI check either
%python_exec -B -c 'from matplotlib_inline.backend_inline import show'
%endif
%if ! %{with test}
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/matplotlib_inline
%{python_sitelib}/matplotlib_inline-%{version}*-info
%endif
%changelog