forked from pool/python-more-itertools
- update to 10.1.0:
* Add more tests for `zip_broadcast()` * Added takewhile_inclusive * Speed up `zip_broadcast()` by pre-filling the scalar elements * Added outer_product. * Simplify `zip_broadcast` * Simplify `_zip_equal` * fix consume() type annotation * Update recipes.iter_index to match CPython PR 102360 * fixup - add missing commas to the readme function table * fixup remove 3.6 from tox * seekable: Add relative_seek * Optimize _chunked_even_finite() * Indexing of combinations with replacement * Add notes for transposing empty inputs * Add the polynomial_eval recipe * Add nth_combination_with_replacement * Add sum_of_squares, sync with itertools * Issue #707: fix ``iterate()`` to enable ``func`` to raise StopIteration + 3 unittests * Update polynomial_from roots and convolve * Issue #677: Improve `partition` * Issue #713: Fix `partial_product` (also simplify and clean up) * Issue #711: Optimize `pairwise` * Issue #715: Simplify/optimize `partial_product` * Issue #717: Improve `duplicates_justseen` * Fix unique_in_window to match described behavior * Add polynomial_derivative recipe * Update recipes with CPython PRs: 105403 and 106371 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=49
This commit is contained in:
3
more-itertools-10.1.0.tar.gz
Normal file
3
more-itertools-10.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:626c369fa0eb37bac0291bce8259b332fd59ac792fa5497b59837309cd5b114a
|
||||
size 111235
|
||||
BIN
more-itertools-9.1.0.tar.gz
(Stored with Git LFS)
BIN
more-itertools-9.1.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
@@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 27 09:13:30 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 10.1.0:
|
||||
* Add more tests for `zip_broadcast()`
|
||||
* Added takewhile_inclusive
|
||||
* Speed up `zip_broadcast()` by pre-filling the scalar elements
|
||||
* Added outer_product.
|
||||
* Simplify `zip_broadcast`
|
||||
* Simplify `_zip_equal`
|
||||
* fix consume() type annotation
|
||||
* Update recipes.iter_index to match CPython PR 102360
|
||||
* fixup - add missing commas to the readme function table
|
||||
* fixup remove 3.6 from tox
|
||||
* seekable: Add relative_seek
|
||||
* Optimize _chunked_even_finite()
|
||||
* Indexing of combinations with replacement
|
||||
* Add notes for transposing empty inputs
|
||||
* Add the polynomial_eval recipe
|
||||
* Add nth_combination_with_replacement
|
||||
* Add sum_of_squares, sync with itertools
|
||||
* Issue #707: fix ``iterate()`` to enable ``func`` to raise
|
||||
StopIteration + 3 unittests
|
||||
* Update polynomial_from roots and convolve
|
||||
* Issue #677: Improve `partition`
|
||||
* Issue #713: Fix `partial_product` (also simplify and clean
|
||||
up)
|
||||
* Issue #711: Optimize `pairwise`
|
||||
* Issue #715: Simplify/optimize `partial_product`
|
||||
* Issue #717: Improve `duplicates_justseen`
|
||||
* Fix unique_in_window to match described behavior
|
||||
* Add polynomial_derivative recipe
|
||||
* Update recipes with CPython PRs: 105403 and 106371
|
||||
* Changes for version 10.0.0
|
||||
* Delay computation of numeric_range len until needed
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 21 12:28:15 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -16,18 +16,16 @@
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python3-%{**}}
|
||||
%define skip_python2 1
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-more-itertools
|
||||
Version: 9.1.0
|
||||
Version: 10.1.0
|
||||
Release: 0
|
||||
Summary: More routines for operating on iterables, beyond itertools
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/erikrose/more-itertools
|
||||
Source: https://files.pythonhosted.org/packages/source/m/more-itertools/more-itertools-%{version}.tar.gz
|
||||
BuildRequires: %{python_module base >= 3.6}
|
||||
BuildRequires: %{python_module base >= 3.7}
|
||||
BuildRequires: %{python_module flit-core}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: fdupes
|
||||
|
||||
Reference in New Issue
Block a user