Skip to content

Update dependency more-itertools to v10#49

Closed
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/more-itertools-10.x
Closed

Update dependency more-itertools to v10#49
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/more-itertools-10.x

Conversation

@renovate

@renovate renovate Bot commented Oct 24, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
more-itertools ==8.14.0 -> ==10.8.0 age confidence

Release Notes

more-itertools/more-itertools (more-itertools)

v10.8.0: Version 10.8.0

Compare Source

What's Changed

  • Fix typo in version history for 10.7.0 by bbayles in #​981
  • Issue 980: Fix variable names: iterable vs iterator by rhettinger in #​982
  • Improve docstrings for dft, idft, and multinomial by rhettinger in #​983
  • Add a note about polynomial endianness by bbayles in #​984
  • Add SPDX license identifier by cdce8p in #​978
  • Remove setup.py file by cdce8p in #​979
  • Include derangements by itself by bbayles in #​985
  • Add derangements by debruijn in #​946
  • Issue 986: argmin and argmax by bbayles in #​988
  • Split-out the integer math functions by rhettinger in #​990
  • Spelling, grammar, punctuation, and usage by rhettinger in #​991
  • Fix the return type of more_itertools.batched by qobilidop in #​993
  • Fix duplicate words in version_history.rst by saadmanrafat in #​992
  • Improve islice_extended memory usage when start<0 and step>0 by ben42code in #​995
  • Unittest islice_extended impact on iterated elements lifecycle by ben42code in #​996
  • convolve() is agnostic to endianness by rhettinger in #​997
  • Sample simplification by rhettinger in #​998
  • Issue 1005: Document difference from builtin min() and max(). by rhettinger in #​1008
  • General cleanups by rhettinger in #​1007
  • Fix broken link by rhettinger in #​1004
  • Add option for nth_prime() to be approximated by rhettinger in #​1002
  • before_and_after improvement by pochmann3 in #​1012
  • Fast paths instead of applying an identity function by rhettinger in #​1018
  • Speed-up _complex_sumprod() by rhettinger in #​1000
  • Improve islice_extended memory usage when stop<0 and step>0 by ben42code in #​999
  • Add derangements() to the doc indexes by rhettinger in #​1020
  • Improve readability/findability with combinatoric subsections by rhettinger in #​1022
  • Fix 1009: Confused docstring for minmax() by rhettinger in #​1021
  • Improve interleave_longest by pochmann3 in #​1027
  • Issue 1001: fix last() when reversed is None by inventshah in #​1028
  • Issue 1029: fix batched IDE/help() docs by inventshah in #​1031
  • Improve mark_ends by pochmann3 in #​1035
  • Add usage notes for sample() by rhettinger in #​1037
  • Fix docstring and comment in private _nth_prime_bounds function by rhettinger in #​1036
  • Fix linespacing by rhettinger in #​1038
  • Add running_median by rhettinger in #​1039
  • running_median() with windowed data by rhettinger in #​1040
  • Pin furo to 2024.08.06 by bbayles in #​1043
  • docs: Fix invisible REPL output in HTML dark mode by moreati in #​1045
  • Use python instead of python3 when running tests by ktbarrett in #​1051
  • Issue 1044: Add new tool: extract() by rhettinger in #​1056
  • Test 3.14.0-rc.2 by bbayles in #​1060
  • unzip: replace custom itemgetter by pochmann3 in #​1059
  • Add interleave_randomly by ktbarrett in #​1048
  • Issue 1003: Multidimensional reshape() by rhettinger in #​1062
  • Get coverage to 100% by rhettinger in #​1065
  • Improve count_cycle() by rhettinger in #​1066
  • Clarify how derangements treats duplicate inputs by rhettinger in #​1069
  • Readability improvement for reshaped() by rhettinger in #​1067
  • Clean-up tail(). Prefer try/except over the Sized ABC. by rhettinger in #​1068
  • Version 10.8.0 by bbayles in #​1071

Full Changelog: more-itertools/more-itertools@v10.7.0...v10.8.0

v10.7.0: Version 10.7.0

Compare Source

See the change log here for details.

v10.6.0: Version 10.6.0

Compare Source

  • New functions:

    • is_prime and nth_prime were added (thanks to JamesParrott and rhettinger)
    • loops was added (thanks to rhettinger)
  • Changes to existing functions:

    • factor was optimized to handle larger inputs and use less memory (thanks to rhettinger)
    • spy was optimized to enable nested calls (thanks to rhettinger)
    • polynomial_from_roots was made non-recursive and able to handle larger numbers of roots (thanks to pochmann3 and rhettinger)
    • is_sorted now only relies on less than comparisons (thanks to rhettinger)
    • The docstring for outer_product was improved (thanks to rhettinger)
    • The type annotations for sample were improved (thanks to rhettinger)
  • Other changes:

    • Python 3.13 is officially supported. Python 3.8 is no longer officially supported. (thanks to hugovk, JamesParrott, and stankudrow)
    • mypy checks were fixed (thanks to JamesParrott)

v10.5.0

Compare Source

What's Changed

Full Changelog: more-itertools/more-itertools@v10.4.0...v10.5.0

v10.4.0: Version 10.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: more-itertools/more-itertools@v10.3.0...v10.4.0

v10.3.0: Version 10.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: more-itertools/more-itertools@v10.2.0...v10.3.0

v10.2.0: Version 10.2.0

Compare Source

  • New functions

    • 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)
  • Other changes

    • Several typing updates were made (thanks to obaltian and ilai-deutel)
    • Some documentation issues were fixed (thanks to F-park, DimitriPapadopoulos, peterbygrave, shuuji3, eltoder, and homeworkprod)

v10.1.0: Version 10.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: more-itertools/more-itertools@v10.0.1...v10.1.0

v10.0.0: Version 10.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: more-itertools/more-itertools@v9.1.1...v10.0.0

v9.1.0: Version 9.1.0

Compare Source

See PR #​678 for details.

v9.0.0: Version 9.0.0

Compare Source

See PR #​647 for details


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/more-itertools-10.x branch from cc494ca to 0fe9153 Compare January 8, 2024 17:41
@renovate renovate Bot force-pushed the renovate/more-itertools-10.x branch from 0fe9153 to cf1c4bd Compare June 10, 2024 16:24
@renovate renovate Bot force-pushed the renovate/more-itertools-10.x branch from cf1c4bd to 2543148 Compare August 7, 2024 14:45
@renovate renovate Bot force-pushed the renovate/more-itertools-10.x branch from 2543148 to ca6a7a3 Compare September 5, 2024 17:13
@renovate renovate Bot force-pushed the renovate/more-itertools-10.x branch from ca6a7a3 to 44ddae5 Compare January 14, 2025 21:45
@renovate renovate Bot force-pushed the renovate/more-itertools-10.x branch from 44ddae5 to 10a8a07 Compare April 22, 2025 16:46
@renovate renovate Bot force-pushed the renovate/more-itertools-10.x branch from 10a8a07 to f62224e Compare August 10, 2025 12:48
@renovate renovate Bot force-pushed the renovate/more-itertools-10.x branch from f62224e to 2f7fec1 Compare September 2, 2025 23:44
@wfordh

wfordh commented Oct 31, 2025

Copy link
Copy Markdown
Collaborator

Closing. See PR #70

@wfordh wfordh closed this Oct 31, 2025
@renovate

renovate Bot commented Oct 31, 2025

Copy link
Copy Markdown
Contributor Author

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 10.x releases. But if you manually upgrade to 10.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate Bot deleted the renovate/more-itertools-10.x branch October 31, 2025 20:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant