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

python313-more-itertools-11.0.2-1.1 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python313-more-itertools Distribution: openSUSE Tumbleweed
Version: 11.0.2 Vendor: openSUSE
Release: 1.1 Build date: Sat Apr 11 01:28:46 2026
Group: Development/Languages/Python Build host: reproducible
Size: 631118 Source RPM: python-more-itertools-11.0.2-1.1.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

* Fri Apr 10 2026 Dirk Müller <dmueller@suse.com>
  - update to 11.0.2:
    * `zip_equal` was removed in 11.0.0. It had been deprecated and
      raising ``DeprecationWarning`` since 2021, but it's removal
      shoul have been documented in 11.0.0's release notes. We
      regret the error.
    * `running_statistics` has been moved from
      ``more_itertools.more`` to ``more_itertools.recipes``. Its
      docstring was also improved (thanks to mastash3ff and
      rhettinger)
  - update to 11.0.0:
    * Python 3.9 support was dropped, since it went EOL on
      2025-10-31
    * `callback_iter` is deprecated. It will be removed in a future
      major release.
    * `iequals` no longer returns ``True`` when called with ``([],
      [ANY])`` (thanks to rhettinger and pochmann3)
    * The ``pred`` argument for `locate` and `replace` must now be
      able to handle a variable number of arguments.
    * `unique_everseen` now raises ``TypeError`` when input
      elements are not hashable.
    * `concurrent_tee`: similar to `tee`, but with guaranteed
      threading semantics
    * `random_derangement`: returns a random derangement of
      elements from an iterable
    * `running_mean`: yields the mean of values in an iterable, or
      in a sliding window
    * `running_statistics`: provides statistics for the values in
      an iterable, or in a sliding window
    * `serialize`: wraps a non-concurrent iterator with a lock to
      enforce sequential access
    * `synchronized`: wraps an iterator-returning callable to make
      its iterators thread-safe
    * `sized_iterator`: wraps an iterable with a known length and
      implements ``__len__``
    * The type hints for `always_iterable` were improved
    * A potential bug in `callback_iter` was fixed
    * A bug in `exactly_n`'s handling of negative arguments was
      fixed
    * `extract`` now accepts a `monotonic` argument for improved
      performance
    * A bug in `numeric_range`'s handling of negative steps was
      fixed
    * `grouper` implementation was updated to match the
      ``itertools`` docs
    * The type hints for `stagger` were improved
    * Memory efficiency was improved for `partition` was improved
    * Performance for the functions `count_cycle`, `difference`,
    * `random_product`,  was improved `nth_combination`,
      `nth_combination_with_replacement`,
    * `nth_permuwas improvedtation`, `nth_product`,
      `product_index`, `random_permutation`, `substrings`, and
      `value_chain` was improved
    * Performance for `ichunked` was improved
* Wed Sep 10 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Update to 10.8.0
    * New functions:
    * :func:`derangements` was added (thanks to debruijn)
    * :func:`argmin` and :func:`argmax` were added (thanks to rhettinger)
    * :func:`running_median` was added (thanks to rhettinger)
    * :func:`extract` was added (thanks to rhettinger)
    * :func:`interleave_randomly` was added (thanks to ktbarrett)
    * Changes to existing functions:
    * The type hints and docstring for :func:`batched` were improved
      (thanks to qobilidop and inventshah)
    * The memory usage of :func:`islice_extended` was reduced (thanks to ben42code)
    * The performance of :func:`sample` and :func:`consecutive_groups`, :func:`dft`,
      :func:`idft`, :func:`map_if`, :func:`count_cycle`, and :func:`tail` were
      improved (thanks to rhettinger)
    * The performance of :func:`before_and_after`, :func:`mark_ends`, and
      :func:`interleave_longest` were improved (thanks to pochmann3)
    * :func:`nth_prime` now accepts an ``approximate`` keyword. When set to ``True``,
      a faster but less accurate method is used to return a result. (thanks to rhettinger)
    * :func:`last` now works when its input has ``__reversed__`` set to ``None``
      (thanks to inventshah)
    * The :func:`unzip` function was simplified (thanks to pochmann3)
    * The :func:`reshape` function now accepts ``shape`` values that represent
      multidimensional matrices (thanks to rhettinger)
    * Other changes:
    * An issue with dark themes and documentation display was fixed
      (thanks to pochmann3, moreati, and pradyunsg)
    * Variable names in several functions were improved (thanks to rhettinger)
    * The docstrings for :func:`dft`, :func:`idft`, :func:`minmax`, :func:`sample`,
      and :func:`multinomial` were improved (thanks to rhettinger)
    * Packaging and package index metadata were improved (thanks to cdce8p)
    * Several aspects of the documentation were improved (thanks to rhettinger,
      saadmanrafat)
    * The Makefile now refers to `python` instead of `python3` (thanks to ktbarrett)
    * Test coverage was improved (thanks to rhettinger)
    * Python 3.14 is now tested by GitHub Actions
* Fri May 16 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Update to 10.7.0
    * :func:`multinomial` was added (thanks to rhettinger)
    * :func:`ichunk`, :func:`iterate`, :func:`one`, :func:`only`,
      :func:`powerset_of_sets`, and :func:`strictly_n` were
      optimized (thanks to rhettinger)
    * :func:`exactly_n` now uses less memory (thanks to rhettinger)
    * :func:`dft` and :func:`idft` were optimized for Python versions
      below 3.12 (thanks to rhettinger)
    * :func:`is_prime` no longer shares state with the users random
      number generator (thanks to rhettinger)
    * Some docstring issues were fixed (thanks to lpulley and ricbit)
    * The type hints for :func:`groupby_transform` were improved (thanks to rhettinger)
    * The ``furo`` theme is now used for docs (thanks to AA-turner)
  - Adjust upstream source name in spec file
* Tue Feb 18 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 2024 Dirk Müller <dmueller@suse.com>
  - update to 10.5.0:
    * Optimize all_equal recipe
    * Reduce groupby.__next__ calls in all_equal
    * Fix types.UnionType
  - update to 10.4.0:
    * Issue 854: sample improvements
    * Issue 858: Use chain and starmap in run_length.decode
    * Issue 859: Update totient recipe
    * Distinct permutations of incomparable items
    * Clarify seekable.relative_seek behavior
    * Issue 864: Improve _sample_unweighted
    * Use log1p for _sample_unweighted
    * Issue 862: change relative_seek() behaviour
    * Issue 876: is_sorted clarifications
    * Issue 870: counts parameter for sample
    * Issue 869: Add a steps argument to circular_shifts
    * Issue 871: Add a fast path for sliding_window
    * type annotation of `windowed_complete` corrected
    * [Docs] Fix strictly_n missing the n parameter
    * Standardize type hints for isinstance's second argument
    * Issue 883: change type hint
    * Add type overloads for `zip_broadcast`
    * Issue 889: Optimize triplewise
    * Add option `strict` to `sort_together`
    * Updates for version 10.4.0
* Sun Jun 30 2024 Dirk Müller <dmueller@suse.com>
  - update to 10.3.0:
    * Increase performance of `padded`
    * Update table of contents
    * Add exactly size of n doc to padded
    * Speed up `ichunked`
    * Optimize `chunked_even` itertool
    * Optimize windowed itertool
    * Issue 820: add powerset_of_sets
    * Fix a typo found by codespell
    * Add typing for countable.items_seen attribute.
    * Add join_mappings
    * Add doublestarmap (closes #679)
    * Add dft and idft
    * Changes for version 10.3.0
    * Add unique()
* 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.

Files

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


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 14 23:06:30 2026