14
0

- update to 10.5.0:

* Optimize all_equal recipe
  * Reduce groupby.__next__ calls in all_equal
  * Fix types.UnionType
- update to 10.4.0:
  * Issue 854: sample improvements
  * Issue 858: Use chain and starmap in run_length.decode
  * Issue 859: Update totient recipe
  * Distinct permutations of incomparable items
  * Clarify seekable.relative_seek behavior
  * Issue 864: Improve _sample_unweighted
  * Use log1p for _sample_unweighted
  * Issue 862: change relative_seek() behaviour
  * Issue 876: is_sorted clarifications
  * Issue 870: counts parameter for sample
  * Issue 869: Add a steps argument to circular_shifts
  * Issue 871: Add a fast path for sliding_window
  * type annotation of `windowed_complete` corrected
  * [Docs] Fix strictly_n missing the n parameter
  * Standardize type hints for isinstance's second argument
  * Issue 883: change type hint
  * Add type overloads for `zip_broadcast`
  * Issue 889: Optimize triplewise
  * Add option `strict` to `sort_together`
  * Updates for version 10.4.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=55
This commit is contained in:
2024-10-23 20:58:04 +00:00
committed by Git OBS Bridge
parent ae44ad36ca
commit ae7c1c18ba
4 changed files with 33 additions and 4 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Wed Oct 23 20:57:33 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 10.5.0:
* Optimize all_equal recipe
* Reduce groupby.__next__ calls in all_equal
* Fix types.UnionType
- update to 10.4.0:
* Issue 854: sample improvements
* Issue 858: Use chain and starmap in run_length.decode
* Issue 859: Update totient recipe
* Distinct permutations of incomparable items
* Clarify seekable.relative_seek behavior
* Issue 864: Improve _sample_unweighted
* Use log1p for _sample_unweighted
* Issue 862: change relative_seek() behaviour
* Issue 876: is_sorted clarifications
* Issue 870: counts parameter for sample
* Issue 869: Add a steps argument to circular_shifts
* Issue 871: Add a fast path for sliding_window
* type annotation of `windowed_complete` corrected
* [Docs] Fix strictly_n missing the n parameter
* Standardize type hints for isinstance's second argument
* Issue 883: change type hint
* Add type overloads for `zip_broadcast`
* Issue 889: Optimize triplewise
* Add option `strict` to `sort_together`
* Updates for version 10.4.0
-------------------------------------------------------------------
Sun Jun 30 19:19:31 UTC 2024 - Dirk Müller <dmueller@suse.com>