14
0

Accepting request 980899 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/980899
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=38
This commit is contained in:
2022-06-06 09:08:19 +00:00
committed by Git OBS Bridge
parent 0f9926608a
commit 69b727a0c2
4 changed files with 33 additions and 7 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7dc6ad46f05f545f900dd59e8dfb4e84a4827b97b3cfecb175ea0c7d247f6064
size 108698

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a42901a0a5b169d925f6f217cd5a190e32ef54360905b9c39ee7db5313bfec0f
size 101264

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Sun Jun 5 14:27:12 UTC 2022 - Arun Persaud <arun@gmx.de>
- specfile:
* build with flit
- update to version 8.13.0:
* New functions
+ The :func:`subslices` recipe from the itertools docs was added
(thanks to rhettinger)
* Changes to existing functions
+ The :func:`ichunked` function is now more efficient (thanks to
hjtran0 and seanmacavaney)
+ The :func:`difference` function is now more efficient (thanks to
Masynchin)
+ The :func:`grouper` recipe now has more features, mirroring the
one in the itertools docs (thanks to rhettinger)
* Other changes
+ Some documentation issues were fixed (thanks to medvied and
Freed-Wu)
+ The more_itertools package is now built with flit (thanks to
mgorny)
-------------------------------------------------------------------
Tue Mar 15 08:49:48 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-more-itertools
Version: 8.12.0
Version: 8.13.0
Release: 0
Summary: More routines for operating on iterables, beyond itertools
License: MIT
@@ -27,7 +27,10 @@ Group: Development/Languages/Python
URL: https://github.com/erikrose/more-itertools
Source: https://files.pythonhosted.org/packages/source/m/more-itertools/more-itertools-%{version}.tar.gz
BuildRequires: %{python_module base}
BuildRequires: %{python_module flit}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
@@ -42,10 +45,10 @@ Python iterables.
rm -rf more_itertools.egg-info
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -55,6 +58,6 @@ rm -rf more_itertools.egg-info
%doc README.rst
%license LICENSE
%{python_sitelib}/more_itertools/
%{python_sitelib}/more_itertools-%{version}-py%{python_version}.egg-info
%{python_sitelib}/more_itertools-%{version}.dist-info/
%changelog