./devel/py-more-itertools, More routines for operating on iterables, beyond itertools

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 10.5.0, Package name: py312-more-itertools-10.5.0, Maintainer: imil

A 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)


CVS history: (Expand)


   2024-09-07 07:50:29 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-more-itertools: updated to 10.5.0

10.5.0

* Bug fixes
    * A missing symbol in ``more.pyi`` was fixed (thanks to eberts-google and \ 
nathanielmanistaatgoogle)

* Other changes
    * :func:`all_equal` was optimized (thanks to pochmann3 and rhettinger)
   2024-08-07 17:08:28 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-more-itertools: updated to 10.4.0

10.4.0

* Changes to existing functions
    * :func:`circular_shifts` now accepts a ``steps`` parameter (thanks to \ 
rhettinger)
    * :func:`distinct_permutations` now accepts iterables with non-comparable \ 
items (thanks to hgustafsson, JamesParrott, and pochmann3)
    * :class:`run_length`, :func:`totient`, :func:`sliding_window`, and \ 
:func:`triplewise` were optimized (thanks to rhettinger)
    * :class:`ilen` was optimized (thanks to pochmann3 and rhettinger)
    * :func:`sample` was improved, and now accepts ``counts`` and ``strict`` \ 
parameters (thanks to rhettinger)
    * :func:`set_partitions` now accepts ``min_size`` and ``max_size`` \ 
parameters (thanks to Pandede)
    * :func:`seekable`'s ``relative_seek`` method remembers previous calls \ 
(thanks to dkrikun)
    * :func:`sort_together` now accepts a ``strict`` parameter (thanks to \ 
rhettinger and Pandede)

* Other changes
    * The docs for :func:`is_sorted` and :func:`strictly_n` were improved \ 
(thanks to pochmann3 and fakuivan)
    * The typing information for :func:`windowed_complete`, \ 
:func:`zip_broadcast`, and and :func:`zip_equal` were improved
   2024-06-10 21:40:09 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-more-itertools: updated to 10.3.0

10.3.0
------

* New functions
    * :func:`powerset_of_sets`, :func:`dft`, and :func:`idft` (thanks to rhettinger)
    * :func:`join_mappings` (thanks to NeilGirdhar and rhettinger)
    * :func:`doublestarmap` (thanks to Skeen, monk-time, DamianB-BitFlipper, and \ 
ergoithz)
    * :func:`unique` (thanks to rhettinger)

* Changes to existing functions
    * :func:`collapse`, :func:`chunked_even`, :func:`ichunked`, :func:`padded`, \ 
and :func:`windowed` were optimized and improved (thanks to james-wasson)
    * :func:`totient` was optimized (thanks to rhettinger)
    * :func:`roundrobin` was updated and improved (thanks to rhettinger)
    * :func:`all_equal` now accepts a *key* parameter.
    * The docs for :func:`value_chain` were improved (thanks to bjrtx)
    * The type annotations for :class:`countable` were improved (thanks to aidanholm)

* Other changes
    * Unit tests were improved (thanks to haukex)
    * Some documentation issues were fixed (thanks to bjrtx and DimitriPapadopoulos)
   2024-01-10 21:29:14 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
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) | Package updated
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) | Package updated
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) | Package updated
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) | Package updated
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)