14
0

- update to 8.7.0:

* New functions
    * :func:`convolve`
    * :func:`product_index`, :func:`combination_index`, and :func:`permutation_index`
    * :func:`value_chain`
  * Changes to existing functions
    * :func:`distinct_combinations` now uses a non-recursive algorithm
    * :func:`pad_none` is now the preferred name for :func:`padnone`, though the latter remains available.
    * :func:`pairwise` will now use the Python standard library implementation on Python 3.10+
    * :func:`sort_together` now accepts a ``key`` argument
    * :func:`seekable` now has a ``peek`` method, and can indicate whether the iterator it's wrapping is exhausted
    * :func:`time_limited` can now indicate whether its iterator has expired
    * The implementation of :func:`unique_everseen` was improved
  * Other changes:
    * Various documentation updates

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=29
This commit is contained in:
2021-03-04 21:04:49 +00:00
committed by Git OBS Bridge
parent e98ce99790
commit 79b7bfc0cf
4 changed files with 24 additions and 5 deletions

View File

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

View File

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

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Thu Mar 4 21:03:34 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 8.7.0:
* New functions
* :func:`convolve`
* :func:`product_index`, :func:`combination_index`, and :func:`permutation_index`
* :func:`value_chain`
* Changes to existing functions
* :func:`distinct_combinations` now uses a non-recursive algorithm
* :func:`pad_none` is now the preferred name for :func:`padnone`, though the latter remains available.
* :func:`pairwise` will now use the Python standard library implementation on Python 3.10+
* :func:`sort_together` now accepts a ``key`` argument
* :func:`seekable` now has a ``peek`` method, and can indicate whether the iterator it's wrapping is exhausted
* :func:`time_limited` can now indicate whether its iterator has expired
* The implementation of :func:`unique_everseen` was improved
* Other changes:
* Various documentation updates
-------------------------------------------------------------------
Sat Dec 19 10:51:38 UTC 2020 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-more-itertools
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-more-itertools
Version: 8.6.0
Version: 8.7.0
Release: 0
Summary: More routines for operating on iterables, beyond itertools
License: MIT