forked from pool/python-more-itertools
Accepting request 590857 from home:apersaud:branches:devel:languages:python
update to latest version OBS-URL: https://build.opensuse.org/request/show/590857 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=4
This commit is contained in:
committed by
Git OBS Bridge
parent
cc108bda85
commit
6f806f2363
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bbe567eedc2fa930d802b848c808b5a9323f7fad2cce2ecd8832ec6e3b019e4a
|
||||
size 42528
|
||||
3
more-itertools-4.1.0.tar.gz
Normal file
3
more-itertools-4.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44
|
||||
size 51310
|
||||
@@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 24 19:55:52 UTC 2018 - arun@gmx.de
|
||||
|
||||
- specfile:
|
||||
* update copyright year
|
||||
|
||||
- update to version 4.1.0:
|
||||
* New itertools:
|
||||
+ split_at (thanks to michael-celani)
|
||||
+ circular_shifts (thanks to hiqua)
|
||||
+ make_decorator - see the blog post Yo, I heard you like
|
||||
decorators for a tour (thanks to pylang)
|
||||
+ always_reversible (thanks to michael-celani)
|
||||
+ nth_combination (from the Python 3.7 docs)
|
||||
* Improvements to existing itertools:
|
||||
+ seekable now has an elements method to return cached items.
|
||||
+ The performance tradeoffs between roundrobin and
|
||||
interleave_longest are now documented (thanks michael-celani,
|
||||
pylang, and MSeifert04)
|
||||
|
||||
- changes from version 4.0.1:
|
||||
* No code changes - this release fixes how the docs display on PyPI.
|
||||
|
||||
- changes from version 4.0.0:
|
||||
* New itertools:
|
||||
+ consecutive_groups (Based on the example in the Python 2.4 docs)
|
||||
+ seekable (If you’re looking for how to “reset” an iterator,
|
||||
you’re in luck!)
|
||||
+ exactly_n (thanks to michael-celani)
|
||||
+ run_length.encode and run_length.decode
|
||||
+ difference
|
||||
* Improvements to existing itertools:
|
||||
+ The number of items between filler elements in intersperse can
|
||||
now be specified (thanks to pylang)
|
||||
+ distinct_permutations and peekable got some minor adjustments
|
||||
(thanks to MSeifert04)
|
||||
+ always_iterable now returns an iterator object. It also now
|
||||
allows different types to be considered iterable (thanks to
|
||||
jaraco)
|
||||
+ bucket can now limit the keys it stores in memory one now allows
|
||||
for custom exceptions (thanks to kalekundert)
|
||||
* Other changes:
|
||||
+ A few typos were fixed (thanks to EdwardBetts)
|
||||
+ All tests can now be run with python setup.py test
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 4 17:15:27 UTC 2017 - aloisio@gmx.com
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-more-itertools
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-more-itertools
|
||||
Version: 3.2.0
|
||||
Version: 4.1.0
|
||||
Release: 0
|
||||
Summary: More routines for operating on iterables, beyond itertools
|
||||
License: MIT
|
||||
|
||||
Reference in New Issue
Block a user