Path to this page:
./
devel/py-more-itertools,
More routines for operating on iterables, beyond itertools
Branch: CURRENT,
Version: 10.5.0,
Package name: py312-more-itertools-10.5.0,
Maintainer: imilA collection of several routines not found in itertools, meant to
operate on itertables.
Required to run:[
devel/py-setuptools] [
lang/python37]
Required to build:[
pkgtools/cwrappers]
Master sites:
Filesize: 118.184 KB
Version history: (Expand)
- (2024-09-07) Updated to version: py312-more-itertools-10.5.0
- (2024-08-07) Updated to version: py311-more-itertools-10.4.0
- (2024-06-11) Updated to version: py311-more-itertools-10.3.0
- (2024-01-10) Updated to version: py311-more-itertools-10.2.0
- (2023-10-28) Updated to version: py311-more-itertools-10.1.0nb1
- (2023-08-24) Updated to version: py311-more-itertools-10.1.0
CVS history: (Expand)
2024-01-10 21:29:14 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-more-itertools: updated to 10.2.0
10.2.0
------
* New functions
* :func:`iter_suppress`
* :func:`filter_map`
* :func:`classify_unique`
* :func:`totient` (from the itertools docs)
* :func:`reshape` (from the itertools docs)
* Changes to existing functions
* :func:`factor`, :func:`iter_index`, :func:`sieve`, and \
:func:`unique_justseen` were updated to match the itertools docs
* :func:`first` was was optimized
* :func:`takewhile_inclusive` was was refactored
* :func:`combination_with_replacement_index` was was optimized
* :func:`nth_permutation`, :func:`nth_combination_with_replacement`, \
:func:`combination_index`, and :func:`combination_with_replacement_index` were \
optimized
* :func:`batched` now accepts a `strict` argument (adapted from itertools docs)
* :func:`time_limited` was improved for Windows
* Other changes
* Several typing updates were made
* Some documentation issues were fixed
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-08-24 22:04:05 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
py-more-itertools: update to 10.1.0.
What's Changed
Add more tests for zip_broadcast() by @kalekundert in #739
Added takewhile_inclusive by @OlegAlexander in #736
Speed up zip_broadcast() by pre-filling the scalar elements by @kalekundert \
in #740
Added outer_product. by @OlegAlexander in #743
Simplify zip_broadcast by @pochmann in #742
Simplify _zip_equal by @pochmann in #744
fix consume() type annotation by @obaltian in #746
Version 10.1.0 by @bbayles in #747
|
2023-03-01 11:58:59 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-more-itertools: updated to 9.1.0
Version 9.1.0
See PR 678 for details.
|
2022-11-17 10:19:20 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-more-itertools: updated to 9.0.0
9.0.0
------
* Potentially breaking changes
* :func:`grouper` no longer accepts an integer as its first argument. \
Previously this raised a ``DeprecationWarning``.
* :func:`collate` has been removed. Use the built-in :func:`heapq.merge` instead.
* :func:`windowed` now yields nothing when its iterable is empty.
* This library now advertises support for Python 3.7+.
* New functions
* :func:`constrained_batches`
* :func:`batched` (from the Python itertools docs)
* :func:`polynomial_from_roots` (from the Python itertools docs)
* :func:`sieve` (from the Python itertools docs)
* Other changes
* Some documentation issues were fixed (thanks to nanouasyn)
|
2022-08-10 13:45:02 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-more-itertools: updated to 8.14.0
8.14.0
------
* New functions
* :func:`longest_common_prefix` (thanks to nanouasyn)
* :func:`iequals` (thanks to nanouasyn)
* Changes to existing functions
* `concurrent.futures.ThreadPoolExecutor` is now imported lazily in \
:func:`callback_iter`.
* :func:`tail` is now optimized for iterables with a fixed length.
* Other changes
* Some documentation issues were fixed (thanks to pochmann and timgates42)
* This library is now marked for Python 3.10 compatibility in PyPI (thanks \
to chayim)
|
2022-05-10 15:05:55 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-more-itertools: updated to 8.13.0
8.13.0
------
* New functions
* The :func:`subslices` recipe from the `itertools` docs was added (thanks \
to rhettinger)
* Changes to existing functions
* The :func:`ichunked` function is now more efficient (thanks to hjtran0 and \
seanmacavaney)
* The :func:`difference` function is now more efficient (thanks to Masynchin)
* The :func:`grouper` recipe now has more features, mirroring the one in the \
`itertools` docs (thanks to rhettinger)
* Other changes
* Some documentation issues were fixed (thanks to medvied and Freed-Wu)
* The `more_itertools` package is now built with `flit` (thanks to mgorny)
|
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|