14
0

- update to 8.3.0:

* New itertools
    * :func:`zip_equal` (thanks to frankier and alexmojaki)
    * :func:`split_at`, :func:`split_before`, :func:`split_after`, and :func:`split_when` all got a ``maxsplit`` paramter (thanks to jferard and ilai-deutel)
    * :func:`split_at` now accepts a ``keep_separator`` parameter (thanks to jferard)
    * :func:`distinct_permutations` can now generate ``r``-length permutations (thanks to SergBobrovsky and ilai-deutel)
    * The :func:`windowed` implementation was improved  (thanks to SergBobrovsky)
    * The :func:`spy` implementation was improved (thanks to has2k1)
    * Type stubs are now tested with ``stubtest`` (thankjs to ilai-deutel)
    * Tests now run with ``python -m unittest`` instead of ``python setup.py test`` (thanks to jdufresne)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=21
This commit is contained in:
2020-06-02 16:31:06 +00:00
committed by Git OBS Bridge
parent 2b4391a96f
commit f54329a7a7
4 changed files with 18 additions and 4 deletions

View File

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

View File

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

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Tue Jun 2 16:30:25 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 8.3.0:
* New itertools
* :func:`zip_equal` (thanks to frankier and alexmojaki)
* :func:`split_at`, :func:`split_before`, :func:`split_after`, and :func:`split_when` all got a ``maxsplit`` paramter (thanks to jferard and ilai-deutel)
* :func:`split_at` now accepts a ``keep_separator`` parameter (thanks to jferard)
* :func:`distinct_permutations` can now generate ``r``-length permutations (thanks to SergBobrovsky and ilai-deutel)
* The :func:`windowed` implementation was improved (thanks to SergBobrovsky)
* The :func:`spy` implementation was improved (thanks to has2k1)
* Type stubs are now tested with ``stubtest`` (thankjs to ilai-deutel)
* Tests now run with ``python -m unittest`` instead of ``python setup.py test`` (thanks to jdufresne)
-------------------------------------------------------------------
Fri Feb 28 21:37:22 UTC 2020 - Dirk Mueller <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.2.0
Version: 8.3.0
Release: 0
Summary: More routines for operating on iterables, beyond itertools
License: MIT