-
Notifications
You must be signed in to change notification settings - Fork 11
Commit a621b07
authored
Bump the minor group across 1 directory with 4 updates (#148)
Bumps the minor group with 4 updates in the / directory:
[mypy](https://github.com/python/mypy),
[nox](https://github.com/wntrblm/nox),
[deepdiff](https://github.com/seperman/deepdiff) and
[setuptools](https://github.com/pypa/setuptools).
Updates `mypy` from 1.15.0 to 1.16.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's
changelog</a>.</em></p>
<blockquote>
<h1>Mypy Release Notes</h1>
<h2>Next Release</h2>
<h2>Mypy 1.16</h2>
<p>We’ve just uploaded mypy 1.16 to the Python Package Index (<a
href="https://pypi.org/project/mypy/">PyPI</a>).
Mypy is a static type checker for Python. This release includes new
features and bug fixes.
You can install it as follows:</p>
<pre><code>python3 -m pip install -U mypy
</code></pre>
<p>You can read the full documentation for this release on <a
href="http://mypy.readthedocs.io">Read the Docs</a>.</p>
<h3>Different Property Getter and Setter Types</h3>
<p>Mypy now supports using different types for a property getter and
setter:</p>
<pre lang="python"><code>class A:
_value: int
<pre><code>@Property
def foo(self) -&gt; int:
return self._value
@foo.setter
def foo(self, x: str | int) -&gt; None:
try:
self._value = int(x)
except ValueError:
raise Exception(f&quot;'{x}' is not a valid value for
'foo'&quot;)
</code></pre>
<p></code></pre></p>
<p>This was contributed by Ivan Levkivskyi (PR <a
href="https://redirect.github.com/python/mypy/pull/18510">18510</a>).</p>
<h3>Flexible Variable Redefinitions (Experimental)</h3>
<p>Mypy now allows unannotated variables to be freely redefined with
different types when using the experimental
<code>--allow-redefinition-new</code>
flag. You will also need to enable <code>--local-partial-types</code>.
Mypy will
now infer a union type when different types are assigned to a
variable:</p>
<pre lang="py"><code># mypy: allow-redefinition-new, local-partial-types
<p>def f(n: int, b: bool) -> int | str:
if b:
x = n
else:
</tr></table>
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python/mypy/commit/9e72e9601f4c2fb6866cfec98fc40a31c91ccdb0"><code>9e72e96</code></a>
Update version to 1.16.0</li>
<li><a
href="https://github.com/python/mypy/commit/8fe719ff3a8d1e26d3841a48df21ddf7d5b3c94d"><code>8fe719f</code></a>
Add changelog for 1.16 (<a
href="https://redirect.github.com/python/mypy/issues/19138">#19138</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/2a036e739f8691576056669371d9f020e95c2603"><code>2a036e7</code></a>
Revert "Infer correct types with overloads of <code>Type[Guard |
Is]</code> (<a
href="https://redirect.github.com/python/mypy/issues/19161">#19161</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/b6da4fcf97fca9cd28e81a880f818dc364b5a06d"><code>b6da4fc</code></a>
Allow enum members to have type objects as values (<a
href="https://redirect.github.com/python/mypy/issues/19160">#19160</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/334469f999c5c777124a123062b4349614447e0d"><code>334469f</code></a>
[mypyc] Improve documentation of native and non-native classes (<a
href="https://redirect.github.com/python/mypy/issues/19154">#19154</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/a499d9fdba06732248c07586f2fd95c47a4fa0f7"><code>a499d9f</code></a>
Document --allow-redefinition-new (<a
href="https://redirect.github.com/python/mypy/issues/19153">#19153</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/96525a23f0f8a3826d9875fa8b6e8e362cd9525e"><code>96525a2</code></a>
Merge commit '9e45dadcf6d8dbab36f83d9df94a706c0b4f9207' into
release-1.16</li>
<li><a
href="https://github.com/python/mypy/commit/9e45dadcf6d8dbab36f83d9df94a706c0b4f9207"><code>9e45dad</code></a>
Clear more data in TypeChecker.reset() instead of asserting (<a
href="https://redirect.github.com/python/mypy/issues/19087">#19087</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/772cd0cebed6884636de0019e43caa06dbaa39ba"><code>772cd0c</code></a>
Add --strict-bytes to --strict (<a
href="https://redirect.github.com/python/mypy/issues/19049">#19049</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/0b65f215996401264a68a3a06f3fbcd19915a9a5"><code>0b65f21</code></a>
Admit that Final variables are never redefined (<a
href="https://redirect.github.com/python/mypy/issues/19083">#19083</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/python/mypy/compare/v1.15.0...v1.16.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `nox` from 2025.2.9 to 2025.5.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/wntrblm/nox/releases">nox's
releases</a>.</em></p>
<blockquote>
<h2>2025.05.01 🌸</h2>
<p>This is a bugfix release that primarily adds support for uv 0.7+. A
few other small fixes were made.</p>
<p>We'd like to thank the following folks who contributed to this
release:</p>
<ul>
<li><a
href="https://github.com/chirizxc"><code>@chirizxc</code></a></li>
<li><a
href="https://github.com/gschaffner"><code>@gschaffner</code></a></li>
<li><a
href="https://github.com/henryiii"><code>@henryiii</code></a></li>
<li><a
href="https://github.com/living180"><code>@living180</code></a></li>
<li><a href="https://github.com/Spectre5"><code>@Spectre5</code></a>
(first contribution)</li>
</ul>
<p>Bugfixes:</p>
<ul>
<li><code>uv version</code> is now <code>uv self version</code>, respect
<code>UV</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> and <a
href="https://github.com/Spectre5"><code>@Spectre5</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/955">wntrblm/nox#955</a></li>
<li>Add <code>UV_PYTHON</code> to disallowed vars by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/959">wntrblm/nox#959</a></li>
<li>Never ignore URL dependencies in PEP 723 noxfiles by <a
href="https://github.com/gschaffner"><code>@gschaffner</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/935">wntrblm/nox#935</a></li>
<li>Support forcing Python on parametrized session by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/958">wntrblm/nox#958</a></li>
<li>Fix <code>conda_install</code> issue with newer conda (only Unix) by
<a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/957">wntrblm/nox#957</a></li>
<li>Show skip reason by default by <a
href="https://github.com/chirizxc"><code>@chirizxc</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/941">wntrblm/nox#941</a></li>
<li>Support <code>Path</code> for envdir by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/932">wntrblm/nox#932</a></li>
<li>Use Python 3.12 for action, allow 3.13, drop 3.8 from auto versions
by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/946">wntrblm/nox#946</a></li>
</ul>
<p>Documentation:</p>
<ul>
<li>Fix a typo in the changelog by <a
href="https://github.com/gschaffner"><code>@gschaffner</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/936">wntrblm/nox#936</a></li>
<li>Update uv recipe by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/933">wntrblm/nox#933</a></li>
<li>Fix parametrized session tagging example by <a
href="https://github.com/living180"><code>@living180</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/942">wntrblm/nox#942</a></li>
<li>uv now supports <code>pip install .</code> reinstallation by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/947">wntrblm/nox#947</a></li>
</ul>
<p>Internal changes:</p>
<ul>
<li>Use PEP 639 license info by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/956">wntrblm/nox#956</a></li>
<li>Make test skips a bit smarter by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/929">wntrblm/nox#929</a></li>
<li>Add our own requirements to conda too by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/945">wntrblm/nox#945</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/wntrblm/nox/blob/main/CHANGELOG.md">nox's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h2>2025.05.01</h2>
<p>This is a bugfix release that primarily adds support for uv 0.7+. A
few other
small fixes were made.</p>
<p>We'd like to thank the following folks who contributed to this
release:</p>
<ul>
<li><a
href="https://github.com/chirizxc"><code>@chirizxc</code></a></li>
<li><a
href="https://github.com/gschaffner"><code>@gschaffner</code></a></li>
<li><a
href="https://github.com/henryiii"><code>@henryiii</code></a></li>
<li><a
href="https://github.com/living180"><code>@living180</code></a></li>
<li><a href="https://github.com/Spectre5"><code>@Spectre5</code></a>
(first contribution)</li>
</ul>
<p>Bugfixes:</p>
<ul>
<li><code>uv version</code> is now <code>uv self version</code>, respect
<code>UV</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> and <a
href="https://github.com/Spectre5"><code>@Spectre5</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/955">wntrblm/nox#955</a></li>
<li>Add <code>UV_PYTHON</code> to disallowed vars by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/959">wntrblm/nox#959</a></li>
<li>Never ignore URL dependencies in PEP 723 noxfiles by <a
href="https://github.com/gschaffner"><code>@gschaffner</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/935">wntrblm/nox#935</a></li>
<li>Support forcing Python on parametrized session by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/958">wntrblm/nox#958</a></li>
<li>Fix <code>conda_install</code> issue with newer conda (only Unix) by
<a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/957">wntrblm/nox#957</a></li>
<li>Show skip reason by default by <a
href="https://github.com/chirizxc"><code>@chirizxc</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/941">wntrblm/nox#941</a></li>
<li>Support <code>Path</code> for envdir by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/932">wntrblm/nox#932</a></li>
<li>Use Python 3.12 for action, allow 3.13, drop 3.8 from auto versions
by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/946">wntrblm/nox#946</a></li>
</ul>
<p>Documentation:</p>
<ul>
<li>Fix a typo in the changelog by <a
href="https://github.com/gschaffner"><code>@gschaffner</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/936">wntrblm/nox#936</a></li>
<li>Update uv recipe by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/933">wntrblm/nox#933</a></li>
<li>Fix parametrized session tagging example by <a
href="https://github.com/living180"><code>@living180</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/942">wntrblm/nox#942</a></li>
<li>uv now supports <code>pip install .</code> reinstallation by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/947">wntrblm/nox#947</a></li>
</ul>
<p>Internal changes:</p>
<ul>
<li>Use PEP 639 license info by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/956">wntrblm/nox#956</a></li>
<li>Make test skips a bit smarter by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/929">wntrblm/nox#929</a></li>
<li>Add our own requirements to conda too by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/945">wntrblm/nox#945</a></li>
</ul>
<h2>2025.02.09</h2>
<p>This release improves PEP 723 support, including adding dependencies
to the noxfile itself ("plugins"). It adds the long-awaited
"requires" option, allowing sessions to require other
sessions. And it brings further improvements to the
<code>pyproject.toml</code> support, including helpers for
dependency-groups and Python version lists.</p>
<p>We'd like to thank the following folks who contributed to this
release:</p>
<ul>
<li><a href="https://github.com/btemplep"><code>@btemplep</code></a>
(first contribution)</li>
<li><a href="https://github.com/chirizxc"><code>@chirizxc</code></a>
(first contribution)</li>
<li><a
href="https://github.com/davidhewitt"><code>@davidhewitt</code></a>
(first contribution)</li>
<li><a
href="https://github.com/gschaffner"><code>@gschaffner</code></a>
(first contribution)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/wntrblm/nox/commit/2254a1ee500bbf66c2a5e4ff5dad030b9f579dcd"><code>2254a1e</code></a>
chore: bump version to 2025.05.01 (<a
href="https://redirect.github.com/wntrblm/nox/issues/960">#960</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/e0b5e330c358234c67694f6cad42f44af986fe43"><code>e0b5e33</code></a>
fix: conda_install issue with newer conda (<a
href="https://redirect.github.com/wntrblm/nox/issues/957">#957</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/a58fe60de4ff8fc523dd96b6b2ea2b53e2fdd0bc"><code>a58fe60</code></a>
fix: support forcing Python on parametrized session (<a
href="https://redirect.github.com/wntrblm/nox/issues/958">#958</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/aa475d6a14add64c666b56607a77439d9d97c1d0"><code>aa475d6</code></a>
fix: add UV_PYTHON to disallowed vars (<a
href="https://redirect.github.com/wntrblm/nox/issues/959">#959</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/1acbb4ee06ee6f55e682d339915382097043d28f"><code>1acbb4e</code></a>
chore: use PEP 639 license (<a
href="https://redirect.github.com/wntrblm/nox/issues/956">#956</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/7219be7e2e8cac28c2c809058a5b5a93053fb776"><code>7219be7</code></a>
chore(deps): bump astral-sh/setup-uv from 5 to 6 in the actions group
(<a
href="https://redirect.github.com/wntrblm/nox/issues/952">#952</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/b943f95d0e12cf8017d440a2f76ce6a9fa20dade"><code>b943f95</code></a>
fix: uv version is now uv self version, support UV (<a
href="https://redirect.github.com/wntrblm/nox/issues/955">#955</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/1d52c8fd93976635e1f51693bf0f36616144c78e"><code>1d52c8f</code></a>
Never ignore URL dependencies in PEP 723 noxfiles (<a
href="https://redirect.github.com/wntrblm/nox/issues/935">#935</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/4e7f644da9d03a44d34940a74d850619fa0c7eb7"><code>4e7f644</code></a>
feat: show skip reason by default (<a
href="https://redirect.github.com/wntrblm/nox/issues/941">#941</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/70df6abb0ea2eacf85c265c1a1c8ea985399edd7"><code>70df6ab</code></a>
fix: use Python 3.12 for action, allow 3.13, drop 3.8 from auto versions
(<a
href="https://redirect.github.com/wntrblm/nox/issues/946">#946</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/wntrblm/nox/compare/2025.02.09...2025.05.01">compare
view</a></li>
</ul>
</details>
<br />
Updates `deepdiff` from 8.4.2 to 8.5.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/seperman/deepdiff/releases">deepdiff's
releases</a>.</em></p>
<blockquote>
<h2>8.5.0</h2>
<ul>
<li>Updating deprecated pydantic calls</li>
<li>Switching to pyproject.toml</li>
<li>Fix for moving nested tables when using iterable_compare_func.
by</li>
<li>Fix recursion depth limit when hashing numpy.datetime64</li>
<li>Moving from legacy setuptools use to pyproject.toml</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/seperman/deepdiff/commits/8.5.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `setuptools` from 80.1.0 to 80.9.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's
changelog</a>.</em></p>
<blockquote>
<h1>v80.9.0</h1>
<h2>Features</h2>
<ul>
<li>Set a deadline for the removal of pkg_resources later this year
(December). (<a
href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li>
<li>Removed reliance on pkg_resources in test_wheel. (<a
href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li>
</ul>
<h1>v80.8.0</h1>
<h2>Features</h2>
<ul>
<li>Replaced more references to pkg_resources with importlib equivalents
in wheel odule. (<a
href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li>
<li>Restore explicit LICENSE file. (<a
href="https://redirect.github.com/pypa/setuptools/issues/5001">#5001</a>)</li>
<li>Removed no longer used build dependency on
<code>coherent.licensed</code>. (<a
href="https://redirect.github.com/pypa/setuptools/issues/5003">#5003</a>)</li>
</ul>
<h1>v80.7.1</h1>
<h2>Bugfixes</h2>
<ul>
<li>Only attempt to fetch eggs for unsatisfied requirements. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4998">#4998</a>)</li>
<li>In installer, when discovering egg dists, let metadata discovery
search each egg. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4998">#4998</a>)</li>
</ul>
<h1>v80.7.0</h1>
<h2>Features</h2>
<ul>
<li>Removed usage of pkg_resources from installer. Set an official
deadline on the installer deprecation to 2025-10-31. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4997">#4997</a>)</li>
</ul>
<h2>Misc</h2>
<ul>
<li><a
href="https://redirect.github.com/pypa/setuptools/issues/4996">#4996</a></li>
</ul>
<h1>v80.6.0</h1>
<p>Features</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pypa/setuptools/commit/9c4d383631d3951fcae0afd73b5d08ff5a262976"><code>9c4d383</code></a>
Bump version: 80.8.0 → 80.9.0</li>
<li><a
href="https://github.com/pypa/setuptools/commit/05cb3c84f1422f3b26ccfb00f4c43886dc55b9bc"><code>05cb3c8</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/5014">#5014</a>
from pypa/debt/pkg_resources-deadline</li>
<li><a
href="https://github.com/pypa/setuptools/commit/3b0bf5bd43034c448a10e7102788fe710b4bb496"><code>3b0bf5b</code></a>
Adjust ignore</li>
<li><a
href="https://github.com/pypa/setuptools/commit/9c28cdffd423f83e43dbfd39fc793c251da48585"><code>9c28cdf</code></a>
Set a deadline for the removal of pkg_resources later this year
(December).</li>
<li><a
href="https://github.com/pypa/setuptools/commit/a3bfef95193bf0ff78ef6e0fb8c63a3728f443b0"><code>a3bfef9</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/5013">#5013</a>
from DimitriPapadopoulos/ISC</li>
<li><a
href="https://github.com/pypa/setuptools/commit/64bf9d0ce88a09748f702bd7736d9ec2879aa6ef"><code>64bf9d0</code></a>
Enforce ruff/flake8-implicit-str-concat rules (ISC)</li>
<li><a
href="https://github.com/pypa/setuptools/commit/3250c25197b299658cfd4d0db67770fc29b47277"><code>3250c25</code></a>
Fix broken link in docs (<a
href="https://redirect.github.com/pypa/setuptools/issues/4947">#4947</a>)</li>
<li><a
href="https://github.com/pypa/setuptools/commit/5ccf50e01ab0d303f524c065f2cb51042b34bc55"><code>5ccf50e</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/5006">#5006</a>
from pypa/feature/remove-more-pkg_resources</li>
<li><a
href="https://github.com/pypa/setuptools/commit/134e587c0ba0b59e1661f08a45e6d6d1ecd24329"><code>134e587</code></a>
Suppress nitpicky typecheck in pyright.</li>
<li><a
href="https://github.com/pypa/setuptools/commit/0bf2663a19f2d947697997d125c3c880df2011b7"><code>0bf2663</code></a>
Add news fragment.</li>
<li>Additional commits viewable in <a
href="https://github.com/pypa/setuptools/compare/v80.1.0...v80.9.0">compare
view</a></li>
</ul>
</details>
<br />
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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>File tree
Expand file treeCollapse file tree
1 file changed
+4
-4
lines changedOpen diff view settings
Filter options
Expand file treeCollapse file tree
1 file changed
+4
-4
lines changedOpen diff view settings
Collapse file
+4-4Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
83 | | - | |
| 83 | + | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
91 | | - | |
| 91 | + | |
92 | 92 | | |
93 | 93 | | |
94 | 94 | | |
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | | - | |
| 103 | + | |
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
| |||
0 commit comments