Compare commits
10 Commits
3e374928ba
...
89131b1012
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
89131b1012 | ||
|
|
1696337bd8 | ||
|
|
ed792cd024 | ||
|
|
43d18e0a64 | ||
|
|
7dd6401321 | ||
|
|
568227d271 | ||
|
|
ad8dd10966 | ||
|
|
11ba01e54c | ||
|
|
5d30bdd8c1 | ||
|
|
97a450d9c5 |
Binary file not shown.
BIN
more-itertools-8.12.0.tar.gz
Normal file
BIN
more-itertools-8.12.0.tar.gz
Normal file
Binary file not shown.
@ -1,28 +1,17 @@
|
|||||||
Name: python-more-itertools
|
Name: python-more-itertools
|
||||||
Version: 4.1.0
|
Version: 8.12.0
|
||||||
Release: 5
|
Release: 2
|
||||||
Summary: An opensource python library wrapping around itertools
|
Summary: An opensource python library wrapping around itertools
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/erikrose/more-itertools
|
URL: https://github.com/erikrose/more-itertools
|
||||||
Source0: https://pypi.io/packages/source/m/more-itertools/more-itertools-%{version}.tar.gz
|
Source0: https://github.com/more-itertools/more-itertools/archive/v%{version}/more-itertools-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Patch0000: python37.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This is a python library for efficient use of itertools utility, which also \
|
This is a python library for efficient use of itertools utility, which also \
|
||||||
includes implementations of the recipes from the itertools documentation.\
|
includes implementations of the recipes from the itertools documentation.\
|
||||||
See https://pythonhosted.org/more-itertools/index.html for more information.
|
See https://pythonhosted.org/more-itertools/index.html for more information.
|
||||||
|
|
||||||
%package -n python2-more-itertools
|
|
||||||
Summary: An opensource python library wrapping around itertools
|
|
||||||
BuildRequires: python2-devel python2-six
|
|
||||||
%{?python_provide:%python_provide python2-more-itertools}
|
|
||||||
|
|
||||||
%description -n python2-more-itertools
|
|
||||||
This is a python library for efficient use of itertools utility, which also \
|
|
||||||
includes implementations of the recipes from the itertools documentation.\
|
|
||||||
See https://pythonhosted.org/more-itertools/index.html for more information.
|
|
||||||
|
|
||||||
%package -n python3-more-itertools
|
%package -n python3-more-itertools
|
||||||
Summary: An opensource python library wrapping around itertools
|
Summary: An opensource python library wrapping around itertools
|
||||||
BuildRequires: python3-devel python3-six
|
BuildRequires: python3-devel python3-six
|
||||||
@ -37,29 +26,32 @@ See https://pythonhosted.org/more-itertools/index.html for more information.
|
|||||||
%autosetup -n more-itertools-%{version} -p1
|
%autosetup -n more-itertools-%{version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py2_build
|
|
||||||
%py3_build
|
%py3_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py2_install
|
|
||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__python2} ./setup.py test
|
|
||||||
%{__python3} ./setup.py test
|
%{__python3} ./setup.py test
|
||||||
|
|
||||||
%files -n python2-more-itertools
|
|
||||||
%doc README.rst PKG-INFO LICENSE
|
|
||||||
%{python2_sitelib}/more_itertools/
|
|
||||||
%exclude %{python2_sitelib}/more_itertools/tests
|
|
||||||
%{python2_sitelib}/more_itertools-%{version}-py%{python2_version}.egg-info
|
|
||||||
|
|
||||||
%files -n python3-more-itertools
|
%files -n python3-more-itertools
|
||||||
%doc README.rst PKG-INFO LICENSE
|
%doc README.rst LICENSE
|
||||||
%{python3_sitelib}/more_itertools/
|
%{python3_sitelib}/more_itertools/
|
||||||
%exclude %{python3_sitelib}/more_itertools/tests
|
%exclude %{python3_sitelib}/more_itertools/tests
|
||||||
%{python3_sitelib}/more_itertools-%{version}-py%{python3_version}.egg-info
|
%{python3_sitelib}/more_itertools-%{version}-py%{python3_version}.egg-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 14 2022 yaoxin <yaoxin30@h-partners.com> - 8.12.0-2
|
||||||
|
- Modify invalid Source
|
||||||
|
|
||||||
|
* Thu Jul 7 2022 wulei <wulei80@h-partners.com> - 8.12.0-1
|
||||||
|
- Upgrade to 8.12.0
|
||||||
|
|
||||||
|
* Thu Jul 15 2021 huangtianhua <huangtianhua@huawei.com> -8.5.0-1
|
||||||
|
- Upgrade to 8.5.0 to support OpenStack-W
|
||||||
|
|
||||||
|
* Wed Oct 21 2020 Ge Wang <wangge20@huawei.com> - 4.1.0-6
|
||||||
|
- remove python2
|
||||||
|
|
||||||
* Fri Nov 15 2019 sunguoshuai <sunguoshuai@huawei.com> - 4.1.0-5
|
* Fri Nov 15 2019 sunguoshuai <sunguoshuai@huawei.com> - 4.1.0-5
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
4
python-more-itertools.yaml
Normal file
4
python-more-itertools.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
version_control: github
|
||||||
|
src_repo: more-itertools/more-itertools
|
||||||
|
tag_prefix: ^v
|
||||||
|
seperator: .
|
||||||
@ -1,40 +0,0 @@
|
|||||||
From e38574428c952b143fc4e0e42cb99b242c7b7977 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Irmen de Jong <irmen@razorvine.net>
|
|
||||||
Date: Tue, 3 Apr 2018 19:43:08 +0200
|
|
||||||
Subject: [PATCH] fix bucket iteration; adhere to Pep 479. Required for Python
|
|
||||||
3.7 which is now also included in the test matrix
|
|
||||||
|
|
||||||
---
|
|
||||||
more_itertools/more.py | 5 ++++-
|
|
||||||
setup.py | 2 ++
|
|
||||||
4 files changed, 8 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/more_itertools/more.py b/more_itertools/more.py
|
|
||||||
index c4b08ae..ca413a7 100644
|
|
||||||
--- a/more_itertools/more.py
|
|
||||||
+++ b/more_itertools/more.py
|
|
||||||
@@ -723,7 +723,10 @@ def _get_values(self, value):
|
|
||||||
# a matching item, caching the rest.
|
|
||||||
else:
|
|
||||||
while True:
|
|
||||||
- item = next(self._it)
|
|
||||||
+ try:
|
|
||||||
+ item = next(self._it)
|
|
||||||
+ except StopIteration:
|
|
||||||
+ return
|
|
||||||
item_value = self._key(item)
|
|
||||||
if item_value == value:
|
|
||||||
yield item
|
|
||||||
diff --git a/setup.py b/setup.py
|
|
||||||
index c4670dd..e6fd01b 100644
|
|
||||||
--- a/setup.py
|
|
||||||
+++ b/setup.py
|
|
||||||
@@ -51,6 +51,8 @@ def get_long_description():
|
|
||||||
'Programming Language :: Python :: 3.3',
|
|
||||||
'Programming Language :: Python :: 3.4',
|
|
||||||
'Programming Language :: Python :: 3.5',
|
|
||||||
+ 'Programming Language :: Python :: 3.6',
|
|
||||||
+ 'Programming Language :: Python :: 3.7',
|
|
||||||
'Topic :: Software Development :: Libraries'],
|
|
||||||
keywords=['itertools', 'iterator', 'iteration', 'filter', 'peek',
|
|
||||||
'peekable', 'collate', 'chunk', 'chunked'],
|
|
||||||
Loading…
x
Reference in New Issue
Block a user