Skip to content

Commit

Permalink
Bump more-itertools from 9.1.0 to 10.0.0 (PR #6297)
Browse files Browse the repository at this point in the history
Bumps [more-itertools](https://github.com/more-itertools/more-itertools) from 9.1.0 to 10.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/more-itertools/more-itertools/releases">more-itertools's releases</a>.</em></p>
<blockquote>
<h2>Version 10.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update recipes.iter_index to match CPython PR 102360 by <a href="https://github.com/bbayles"><code>@​bbayles</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/690">more-itertools/more-itertools#690</a></li>
<li>fixup - add missing commas to the readme function table by <a href="https://github.com/lonnen"><code>@​lonnen</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/692">more-itertools/more-itertools#692</a></li>
<li>fixup remove 3.6 from tox by <a href="https://github.com/lonnen"><code>@​lonnen</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/693">more-itertools/more-itertools#693</a></li>
<li>seekable: Add relative_seek by <a href="https://github.com/karlb"><code>@​karlb</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/694">more-itertools/more-itertools#694</a></li>
<li>Optimize _chunked_even_finite() by <a href="https://github.com/elliotwutingfeng"><code>@​elliotwutingfeng</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/699">more-itertools/more-itertools#699</a></li>
<li>Indexing of combinations with replacement by <a href="https://github.com/Schoyen"><code>@​Schoyen</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/689">more-itertools/more-itertools#689</a></li>
<li>Add notes for transposing empty inputs by <a href="https://github.com/XuehaiPan"><code>@​XuehaiPan</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/700">more-itertools/more-itertools#700</a></li>
<li>Add the polynomial_eval recipe by <a href="https://github.com/bbayles"><code>@​bbayles</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/703">more-itertools/more-itertools#703</a></li>
<li>Add nth_combination_with_replacement by <a href="https://github.com/Schoyen"><code>@​Schoyen</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/704">more-itertools/more-itertools#704</a></li>
<li>Add sum_of_squares, sync with itertools by <a href="https://github.com/bbayles"><code>@​bbayles</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/706">more-itertools/more-itertools#706</a></li>
<li>Issue <a href="https://github.com/more-itertools/more-itertools/issues/707">#707</a>: fix <code>iterate()</code> to enable <code>func</code> to raise StopIteration + 3 unittests by <a href="https://github.com/jrebiffe"><code>@​jrebiffe</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/708">more-itertools/more-itertools#708</a></li>
<li>Update polynomial_from roots and convolve by <a href="https://github.com/bbayles"><code>@​bbayles</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/709">more-itertools/more-itertools#709</a></li>
<li>Issue <a href="https://github.com/more-itertools/more-itertools/issues/677">#677</a>: Improve <code>partition</code> by <a href="https://github.com/pochmann"><code>@​pochmann</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/710">more-itertools/more-itertools#710</a></li>
<li>Issue <a href="https://github.com/more-itertools/more-itertools/issues/713">#713</a>: Fix <code>partial_product</code> (also simplify and clean up) by <a href="https://github.com/pochmann"><code>@​pochmann</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/714">more-itertools/more-itertools#714</a></li>
<li>Issue <a href="https://github.com/more-itertools/more-itertools/issues/711">#711</a>: Optimize <code>pairwise</code> by <a href="https://github.com/pochmann"><code>@​pochmann</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/712">more-itertools/more-itertools#712</a></li>
<li>Issue <a href="https://github.com/more-itertools/more-itertools/issues/715">#715</a>: Simplify/optimize <code>partial_product</code> by <a href="https://github.com/pochmann"><code>@​pochmann</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/716">more-itertools/more-itertools#716</a></li>
<li>Issue <a href="https://github.com/more-itertools/more-itertools/issues/717">#717</a>: Improve <code>duplicates_justseen</code> by <a href="https://github.com/pochmann"><code>@​pochmann</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/718">more-itertools/more-itertools#718</a></li>
<li>Fix unique_in_window to match described behavior by <a href="https://github.com/elliotwutingfeng"><code>@​elliotwutingfeng</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/720">more-itertools/more-itertools#720</a></li>
<li>Add polynomial_derivative recipe by <a href="https://github.com/bbayles"><code>@​bbayles</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/723">more-itertools/more-itertools#723</a></li>
<li>Update recipes with CPython PRs: 105403 and 106371 by <a href="https://github.com/bbayles"><code>@​bbayles</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/731">more-itertools/more-itertools#731</a></li>
<li>Changes for version 10.0.0 by <a href="https://github.com/bbayles"><code>@​bbayles</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/734">more-itertools/more-itertools#734</a></li>
<li>Delay computation of numeric_range len until needed by <a href="https://github.com/eltoder"><code>@​eltoder</code></a> in <a href="https://github.com/more-itertools/more-itertools/pull/674">more-itertools/more-itertools#674</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/karlb"><code>@​karlb</code></a> made their first contribution in <a href="https://github.com/more-itertools/more-itertools/pull/694">more-itertools/more-itertools#694</a></li>
<li><a href="https://github.com/elliotwutingfeng"><code>@​elliotwutingfeng</code></a> made their first contribution in <a href="https://github.com/more-itertools/more-itertools/pull/699">more-itertools/more-itertools#699</a></li>
<li><a href="https://github.com/Schoyen"><code>@​Schoyen</code></a> made their first contribution in <a href="https://github.com/more-itertools/more-itertools/pull/689">more-itertools/more-itertools#689</a></li>
<li><a href="https://github.com/XuehaiPan"><code>@​XuehaiPan</code></a> made their first contribution in <a href="https://github.com/more-itertools/more-itertools/pull/700">more-itertools/more-itertools#700</a></li>
<li><a href="https://github.com/jrebiffe"><code>@​jrebiffe</code></a> made their first contribution in <a href="https://github.com/more-itertools/more-itertools/pull/708">more-itertools/more-itertools#708</a></li>
<li><a href="https://github.com/pochmann"><code>@​pochmann</code></a> made their first contribution in <a href="https://github.com/more-itertools/more-itertools/pull/710">more-itertools/more-itertools#710</a></li>
<li><a href="https://github.com/eltoder"><code>@​eltoder</code></a> made their first contribution in <a href="https://github.com/more-itertools/more-itertools/pull/674">more-itertools/more-itertools#674</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/more-itertools/more-itertools/compare/v9.1.1...v10.0.0">https://github.com/more-itertools/more-itertools/compare/v9.1.1...v10.0.0</a></p>
<h2>Version 9.1.1 (docs only)</h2>
<p>This is a docs-only release to fix issue <a href="https://github.com/more-itertools/more-itertools/issues/688">#688</a>. There is no corresponding PyPI release.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/more-itertools/more-itertools/commit/5c1fb20d4b918a5e4b38898dac983d85f6952f03"><code>5c1fb20</code></a> Merge pull request <a href="https://github.com/more-itertools/more-itertools/issues/734">#734</a> from more-itertools/issue-732-isqrt</li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/4d49fb9215e43c16e33e598fd04840ec290813bd"><code>4d49fb9</code></a> Update version history for numeric_change update</li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/8ed237d30afd97b81a966de7308d2e2fd5f4a94e"><code>8ed237d</code></a> Merge branch 'eltoder-feature/numeric-range-calc-len' into issue-732-isqrt</li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/a67c0306f64eedb5f8489be936ef7b3b70168acc"><code>a67c030</code></a> Delay computation of numeric_range len until needed</li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/9514d0722f53f8ed3ac2521d71cba15f22e6242f"><code>9514d07</code></a> Update convolve recipe with note about implementation</li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/45b10802f44bd9b362bd7bd5025e9b4e6b81d27e"><code>45b1080</code></a> Fix docstring typo</li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/d9d2654db6e196f4f7be5273eabc7618afa29368"><code>d9d2654</code></a> More for the 10.0.0 changelog</li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/9c6f61682094ea89428cd2f4554dd43d026a7e5c"><code>9c6f616</code></a> Sync factor with CPython <a href="https://github.com/more-itertools/more-itertools/issues/106817">GH-106817</a></li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/f55a41d282272bb215789c6224a5a1ece6aaf3de"><code>f55a41d</code></a> nth_combination_with_replacement was in the wrong spot</li>
<li><a href="https://github.com/more-itertools/more-itertools/commit/10540e7b8bd83afe28bd3524fc380f0553c42950"><code>10540e7</code></a> Selectively skip zip_strict tests</li>
<li>Additional commits viewable in <a href="https://github.com/more-itertools/more-itertools/compare/v9.1.0...v10.0.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=more-itertools&package-manager=pip&previous-version=9.1.0&new-version=10.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>
  • Loading branch information
dependabot[bot] authored and inmantaci committed Jul 24, 2023
1 parent 3fb4842 commit e7f624b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelogs/unreleased/6297-dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
change-type: patch
description: Bump more-itertools from 9.1.0 to 10.0.0
destination-branches:
- master
sections: {}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ email-validator==2.0.0.post2
execnet==1.9.0
importlib_metadata==6.8.0
jinja2==3.1.2
more-itertools==9.1.0
more-itertools==10.0.0
netifaces==0.11.0
packaging==23.1
pip==23.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"execnet>=1,<2",
"importlib_metadata>=4,<7",
"jinja2~=3.0",
"more-itertools>=8,<10",
"more-itertools>=8,<11",
"netifaces~=0.11",
# leave upper bound floating for fast-moving and extremely stable packaging
"packaging>=21.3",
Expand Down

0 comments on commit e7f624b

Please sign in to comment.