14
0

Accepting request 1268355 from home:glaubitz:branches:devel:languages:python

- Update to 10.6.0
  * `is_prime` and `nth_prime` were added
  * `loops` was added
  * `factor` was optimized to handle larger inputs and use less memory
  * `spy` was optimized to enable nested calls
  * `polynomial_from_roots` was made non-recursive and able to handle
    larger numbers of roots
  * `is_sorted` now only relies on less than comparisons
  * The docstring for `outer_product` was improved
  * The type annotations for sample were improved
  * Python 3.13 is officially supported. Python 3.8 is no longer
    officially supported.
  * `mypy` checks were fixed

OBS-URL: https://build.opensuse.org/request/show/1268355
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=57
This commit is contained in:
2025-04-10 13:44:09 +00:00
committed by Git OBS Bridge
parent ae7c1c18ba
commit f8c53484fc
4 changed files with 22 additions and 5 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Tue Feb 18 12:31:21 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 10.6.0
* `is_prime` and `nth_prime` were added
* `loops` was added
* `factor` was optimized to handle larger inputs and use less memory
* `spy` was optimized to enable nested calls
* `polynomial_from_roots` was made non-recursive and able to handle
larger numbers of roots
* `is_sorted` now only relies on less than comparisons
* The docstring for `outer_product` was improved
* The type annotations for sample were improved
* Python 3.13 is officially supported. Python 3.8 is no longer
officially supported.
* `mypy` checks were fixed
-------------------------------------------------------------------
Wed Oct 23 20:57:33 UTC 2024 - Dirk Müller <dmueller@suse.com>