-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit f566c82
authored
chore(deps-dev): update tox requirement from 4.14.2 to 4.15.0 (#603)
Updates the requirements on [tox](https://github.com/tox-dev/tox) to
permit the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tox-dev/tox/releases">tox's
releases</a>.</em></p>
<blockquote>
<h2>4.15.0</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<ul>
<li>Remove duplicated and misleading configuration section by <a
href="https://github.com/jugmac00"><code>@jugmac00</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3251">tox-dev/tox#3251</a></li>
<li>Fix dropped leading characters <code>c</code> from constraints'
packages by <a
href="https://github.com/jugmac00"><code>@jugmac00</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3250">tox-dev/tox#3250</a></li>
<li>Fix type-checking by <a
href="https://github.com/stefanor"><code>@stefanor</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3260">tox-dev/tox#3260</a></li>
<li>Update installation.rst by <a
href="https://github.com/shenxianpeng"><code>@shenxianpeng</code></a>
in <a
href="https://redirect.github.com/tox-dev/tox/pull/3257">tox-dev/tox#3257</a></li>
<li>Allow appending to deps with the command line by <a
href="https://github.com/stefanor"><code>@stefanor</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3259">tox-dev/tox#3259</a></li>
<li>Support multiple override appends by <a
href="https://github.com/amitschang"><code>@amitschang</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3261">tox-dev/tox#3261</a></li>
<li>Add bang to invert exit code by <a
href="https://github.com/sillydan1"><code>@sillydan1</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3271">tox-dev/tox#3271</a></li>
<li>fix(parser): Fix --discover parsed incorrectly from env by <a
href="https://github.com/mimre25"><code>@mimre25</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3274">tox-dev/tox#3274</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/shenxianpeng"><code>@shenxianpeng</code></a>
made their first contribution in <a
href="https://redirect.github.com/tox-dev/tox/pull/3257">tox-dev/tox#3257</a></li>
<li><a
href="https://github.com/amitschang"><code>@amitschang</code></a> made
their first contribution in <a
href="https://redirect.github.com/tox-dev/tox/pull/3261">tox-dev/tox#3261</a></li>
<li><a href="https://github.com/sillydan1"><code>@sillydan1</code></a>
made their first contribution in <a
href="https://redirect.github.com/tox-dev/tox/pull/3271">tox-dev/tox#3271</a></li>
<li><a href="https://github.com/mimre25"><code>@mimre25</code></a> made
their first contribution in <a
href="https://redirect.github.com/tox-dev/tox/pull/3274">tox-dev/tox#3274</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/tox-dev/tox/compare/4.14.2...4.15.0">https://github.com/tox-dev/tox/compare/4.14.2...4.15.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tox-dev/tox/blob/main/docs/changelog.rst">tox's
changelog</a>.</em></p>
<blockquote>
<h2>v4.15.0 (2024-04-26)</h2>
<p>Features - 4.15.0</p>
<pre><code>- Add support for multiple appending override options (-x,
--override) on command line - by :user:`amitschang`. (:issue:`3261`)
- Add support for inverting exit code success criteria using bang (!)
(:issue:`3271`)
<p>Bugfixes - 4.15.0
</code></pre></p>
<ul>
<li>Fix issue that the leading character <code>c</code> was dropped from
packages in constraints files - by :user:<code>jugmac00</code>.
(:issue:<code>3247</code>)</li>
<li>Allow appending to <code>deps</code> with <code>--override
testenv.deps+=foo</code> - by :user:<code>stefanor</code>.
(:issue:<code>3256</code>)</li>
<li>Fix non-existing branch <code>rewrite</code> in the documentation to
<code>main</code>. (:issue:<code>3257</code>)</li>
<li>Update test typing for build 1.2.0, which has an explicit
<code>Distribution</code> type - by :user:<code>stefanor</code>.
(:issue:<code>3260</code>)</li>
<li>Fix broken input parsing for <code>--discover</code> flag. - by
:user:<code>mimre25</code> (:issue:<code>3272</code>)</li>
</ul>
<p>Improved Documentation - 4.15.0</p>
<pre><code>- Rephrase ``--discover`` flag's description to avoid
confusion between paths and executables. - by :user:`mimre25`
(:issue:`3274`)
<h2>v4.14.2 (2024-03-22)</h2>
<p>Bugfixes - 4.14.2</p>
<pre><code>- Add provision arguments to ToxParser to fix crash when
provisioning new tox environment without list-dependencies by
:user:`seyidaniels` (:issue:`3190`)
Improved Documentation - 4.14.2
</code></pre>
<ul>
<li>Removed unused line from the 'fresh_subprocess' documentation.
(:issue:<code>3241</code>)</li>
</ul>
<h2>v4.14.1 (2024-03-06)</h2>
<p>Bugfixes - 4.14.1</p>
<pre><code>- Fix crash with fresh subprocess, if the build
backend is setuptools automatically enable fresh subprocesses for
build backend calls - by :user:`gaborbernat`. (:issue:`3235`)
v4.14.0 (2024-03-05)
--------------------
Features - 4.14.0
</code></pre>
<ul>
<li>Support enabling fresh subprocess for packaging build backends
via :ref:<code>fresh_subprocess</code> - by
:user:<code>gaborbernat</code>.
(:issue:<code>3227</code>)</li>
<li>Allow plugins attaching additional information to
<code>--version</code> via
<code>tox_append_version_info</code> method in the plugin
module - by :user:<code>gaborbernat</code>.
(:issue:<code>3234</code>)</li>
</ul>
<h2>v4.13.0 (2024-02-16)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="tox-dev/tox@261b4ca55686059489b1314c440f0e2fca21aca5"><code>261b4ca</code></a>
release 4.15.0</li>
<li><a
href="tox-dev/tox@c54dfbd9ad4aad9f0ef5503b7dff2558cdf64208"><code>c54dfbd</code></a>
fix(parser): Fix --discover parsed incorrectly from env (<a
href="https://redirect.github.com/tox-dev/tox/issues/3274">#3274</a>)</li>
<li><a
href="tox-dev/tox@809e10f9871e75cf7b07063f47393f9c10861174"><code>809e10f</code></a>
Add bang to invert exit code (<a
href="https://redirect.github.com/tox-dev/tox/issues/3271">#3271</a>)</li>
<li><a
href="tox-dev/tox@822c9d07699aa090fb8d37cb94247ea0d085125b"><code>822c9d0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/tox/issues/3267">#3267</a>)</li>
<li><a
href="tox-dev/tox@0e5a3dbb9a1c7eb1df56421cc4bca5e187626ccd"><code>0e5a3db</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/tox/issues/3265">#3265</a>)</li>
<li><a
href="tox-dev/tox@f5850c0d3a893cbb6d9de192fe8e6e857573499b"><code>f5850c0</code></a>
Support multiple override appends (<a
href="https://redirect.github.com/tox-dev/tox/issues/3261">#3261</a>)</li>
<li><a
href="tox-dev/tox@c2be62972e7f7b3e79260e5c96e4fe5bf76f5929"><code>c2be629</code></a>
Allow appending to deps with the command line (<a
href="https://redirect.github.com/tox-dev/tox/issues/3259">#3259</a>)</li>
<li><a
href="tox-dev/tox@d28a9ee0ea28b2356b24a0d0e0ed70c0141d41cc"><code>d28a9ee</code></a>
Update installation.rst (<a
href="https://redirect.github.com/tox-dev/tox/issues/3257">#3257</a>)</li>
<li><a
href="tox-dev/tox@a19a9467cfae5a0fc2c1b6faf1845d412898c693"><code>a19a946</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/tox/issues/3258">#3258</a>)</li>
<li><a
href="tox-dev/tox@a22fe8ffce73acdfc2aefd70228ede0337aac19b"><code>a22fe8f</code></a>
Fix type-checking (<a
href="https://redirect.github.com/tox-dev/tox/issues/3260">#3260</a>)</li>
<li>Additional commits viewable in <a
href="tox-dev/tox@4.14.2...4.15.0">compare
view</a></li>
</ul>
</details>
<br />
</code></pre>
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 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>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 1257861 commit f566c82Copy full SHA for f566c82
File tree
Expand file treeCollapse file tree
1 file changed
+1
-1
lines changedFilter options
Expand file treeCollapse file tree
1 file changed
+1
-1
lines changed+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
93 | 93 |
| |
94 | 94 |
| |
95 | 95 |
| |
96 |
| - | |
| 96 | + | |
97 | 97 |
| |
98 | 98 |
| |
99 | 99 |
| |
|
0 commit comments