14
0

- update to 8.4.0:

* New itertools
 * :func:`mark_ends` (thanks to kalekundert)
 * :func:`is_sorted`
 * Changes to existing itertools:
   * :func:`islice_extended` can now be used with real slices (thanks to cool-RR)
   * The implementations for :func:`filter_except` and :func:`map_except` were improved (thanks to SergBobrovsky)
 * Other changes
   * Automated tests now enforce code style (using `black <https://github.com/psf/black>`__)
   * The various signatures of :func:`islice_extended` and :func:`numeric_range` now appear in the docs (thanks to dsfulf)
   * The test configuration for mypy was updated (thanks to blueyed)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=23
This commit is contained in:
2020-08-06 08:25:35 +00:00
committed by Git OBS Bridge
parent f54329a7a7
commit a8b6b2b531
4 changed files with 19 additions and 4 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Aug 6 08:16:47 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 8.4.0:
* New itertools
* :func:`mark_ends` (thanks to kalekundert)
* :func:`is_sorted`
* Changes to existing itertools:
* :func:`islice_extended` can now be used with real slices (thanks to cool-RR)
* The implementations for :func:`filter_except` and :func:`map_except` were improved (thanks to SergBobrovsky)
* Other changes
* Automated tests now enforce code style (using `black <https://github.com/psf/black>`__)
* The various signatures of :func:`islice_extended` and :func:`numeric_range` now appear in the docs (thanks to dsfulf)
* The test configuration for mypy was updated (thanks to blueyed)
-------------------------------------------------------------------
Tue Jun 2 16:30:25 UTC 2020 - Dirk Mueller <dmueller@suse.com>