Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python310-more-itertools-10.2.0-1.3 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python310-more-itertools Distribution: openSUSE:Factory:zSystems
Version: 10.2.0 Vendor: openSUSE
Release: 1.3 Build date: Tue Jan 16 16:34:58 2024
Group: Development/Languages/Python Build host: reproducible
Size: 430109 Source RPM: python-more-itertools-10.2.0-1.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/erikrose/more-itertools
Summary: More routines for operating on iterables, beyond itertools
Additional building blocks, recipes, and routines for working with
Python iterables.

Provides

Requires

License

MIT

Changelog

* Tue Jan 16 2024 Dirk Müller <dmueller@suse.com>
  - update to 10.2.0:
    * `iter_suppress` (thanks to jaraco, pochmann, and rhettinger)
    * `filter_map` (thanks to struktured)
    * `classify_unique` (thanks to haukex)
    * `totient` (from the itertools docs)
    * `reshape` (from the itertools docs)
    * Changes to existing functions
    * `factor`, `iter_index`, `sieve`, and `unique_justseen` were
      updated to match the itertools docs
    * `first` was was optimized (thanks to pochmann)
    * `takewhile_inclusive` was was refactored (thanks to eltoder)
    * `combination_with_replacement_index` was was optimized
      (thanks to elliotwutingfeng and rhettinger)
    * `nth_permutation`, `nth_combination_with_replacement`,
      `combination_index`, and `combination_with_replacement_index`
      were optimized (thanks to rhettinger)
    * `batched` now accepts a `strict` argument (adapted from
      itertools docs)
    * `time_limited` was improved for Windows (thanks to haukex)
* Mon Nov 27 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 2023 Dirk Müller <dmueller@suse.com>
  - add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 Matej Cepl <mcepl@suse.com>
  - Make calling of %{sle15modernpython} optional.
* Tue Mar 07 2023 Dirk Müller <dmueller@suse.com>
  - update to 9.1.0:
    * See PR #678 for details.
* Fri Oct 28 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - Update to 9.0.0
    * Potentially breaking changes
    grouper() no longer accepts an integer as its first argument. Previously this raised a DeprecationWarning.
    collate() has been removed. Use the built-in heapq.merge() instead.
    windowed() now yields nothing when its iterable is empty.
    This library now advertises support for Python 3.7+.
    * New functions
    constrained_batches()
    batched() (from the Python itertools docs)
    polynomial_from_roots() (from the Python itertools docs)
    sieve() (from the Python itertools docs)
    * Other changes
    Some documentation issues were fixed (thanks to nanouasyn)
* Fri Sep 16 2022 Dirk Müller <dmueller@suse.com>
  - update to 8.14.0:
    * :func:`longest_common_prefix` (thanks to nanouasyn)
    * :func:`iequals` (thanks to nanouasyn)
    * `concurrent.futures.ThreadPoolExecutor` is now imported lazily in :func:`callback_iter`.
    * :func:`tail` is now optimized for iterables with a fixed length.
    * 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)
* Mon Jun 13 2022 Ben Greiner <code@bnavigator.de>
  - Clean up specfile, only requires flit-core (flit not in Ring1)
* Sun Jun 05 2022 Arun Persaud <arun@gmx.de>
  - specfile:
    * build with flit
  - update to version 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)
* Tue Mar 15 2022 Dirk Müller <dmueller@suse.com>
  - use python_expand for fdupes
* Thu Feb 03 2022 Arun Persaud <arun@gmx.de>
  - specfile:
    * update copyright year
  - update to version 8.12.0:
    * Bug fixes
      + Some documentation issues were fixed (thanks to Masynchin,
      spookylukey, astrojuanlu, and stephengmatthews)
      + Python 3.5 support was temporarily restored (thanks to
      mattbonnell)
  - changes from version 8.11.0:
    * New functions
      + The before_and_after, sliding_window, and triplewise recipes
      from the Python 3.10 docs were added
      + duplicates_everseen and duplicates_justseen (thanks to OrBin and
      DavidPratt512)
      + minmax (thanks to Ricocotam, MSeifert04, and ruancomelli)
      + strictly_n (thanks to hwalinga and NotWearingPants)
      + unique_in_window
    * Changes to existing functions
      + groupby_transform had its type stub improved (thanks to mjk4 and
      ruancomelli)
      + is_sorted now accepts a strict parameter (thanks to Dutcho and
      ruancomelli)
      + zip_broadcast was updated to fix a bug (thanks to kalekundert)
* Sat Oct 16 2021 Dirk Müller <dmueller@suse.com>
  - update to 8.10.0:
    * The type stub for :func:`iter_except` was improved (thanks to  MarcinKonowalczyk)
    * Type stubs now ship with the source release (thanks to saaketp)
    * The Sphinx docs were improved (thanks to MarcinKonowalczyk)
    * New functions
    * :func:`interleave_evenly` (thanks to mbugert)
    * :func:`repeat_each` (thanks to FinalSh4re)
    * :func:`chunked_even` (thanks to valtron)
    * :func:`map_if` (thanks to sassbalint)
    * :func:`zip_broadcast` (thanks to kalekundert)
    * Changes to existing functions
    * The type stub for :func:`chunked` was improved (thanks to  PhilMacKay)
    * The type stubs for :func:`zip_equal` and `zip_offset` were improved (thanks to maffoo)
    * Building Sphinx docs locally was improved (thanks to MarcinKonowalczyk)
* Sun Jun 06 2021 Dirk Müller <dmueller@suse.com>
  - update to 8.8.0:
    * :func:`countable` (thanks to krzysieq)
    * :func:`split_before` was updated to handle empy collections (thanks to TiunovNN)
    * :func:`unique_everseen` got a performance boost (thanks to Numerlor)
    * The type hint for :func:`value_chain` was corrected (thanks to vr2262)
* Thu Jun 03 2021 pgajdos@suse.com
  - %check: use %pyunittest rpm macro
* Thu Mar 04 2021 Dirk Müller <dmueller@suse.com>
  - update to 8.7.0:
    * New functions
    * :func:`convolve`
    * :func:`product_index`, :func:`combination_index`, and :func:`permutation_index`
    * :func:`value_chain`
    * Changes to existing functions
    * :func:`distinct_combinations` now uses a non-recursive algorithm
    * :func:`pad_none` is now the preferred name for :func:`padnone`, though the latter remains available.
    * :func:`pairwise` will now use the Python standard library implementation on Python 3.10+
    * :func:`sort_together` now accepts a ``key`` argument
    * :func:`seekable` now has a ``peek`` method, and can indicate whether the iterator it's wrapping is exhausted
    * :func:`time_limited` can now indicate whether its iterator has expired
    * The implementation of :func:`unique_everseen` was improved
    * Other changes:
    * Various documentation updates

Files

/usr/lib/python3.10/site-packages/more_itertools
/usr/lib/python3.10/site-packages/more_itertools-10.2.0.dist-info
/usr/lib/python3.10/site-packages/more_itertools-10.2.0.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/more_itertools-10.2.0.dist-info/LICENSE
/usr/lib/python3.10/site-packages/more_itertools-10.2.0.dist-info/METADATA
/usr/lib/python3.10/site-packages/more_itertools-10.2.0.dist-info/RECORD
/usr/lib/python3.10/site-packages/more_itertools-10.2.0.dist-info/REQUESTED
/usr/lib/python3.10/site-packages/more_itertools-10.2.0.dist-info/WHEEL
/usr/lib/python3.10/site-packages/more_itertools/__init__.py
/usr/lib/python3.10/site-packages/more_itertools/__init__.pyi
/usr/lib/python3.10/site-packages/more_itertools/__pycache__
/usr/lib/python3.10/site-packages/more_itertools/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/more_itertools/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/more_itertools/__pycache__/more.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/more_itertools/__pycache__/more.cpython-310.pyc
/usr/lib/python3.10/site-packages/more_itertools/__pycache__/recipes.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/more_itertools/__pycache__/recipes.cpython-310.pyc
/usr/lib/python3.10/site-packages/more_itertools/more.py
/usr/lib/python3.10/site-packages/more_itertools/more.pyi
/usr/lib/python3.10/site-packages/more_itertools/py.typed
/usr/lib/python3.10/site-packages/more_itertools/recipes.py
/usr/lib/python3.10/site-packages/more_itertools/recipes.pyi
/usr/share/doc/packages/python310-more-itertools
/usr/share/doc/packages/python310-more-itertools/README.rst
/usr/share/licenses/python310-more-itertools
/usr/share/licenses/python310-more-itertools/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon Apr 29 23:40:03 2024