Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨📝 Actually use the favicon in Sphinx #2177

Merged
merged 2 commits into from
Aug 27, 2021

Conversation

webknjaz
Copy link
Contributor

@webknjaz webknjaz commented Aug 23, 2021

This patch makes sure that RTD stops falling back to their own favicon and starts using the tox's one.

Ref: #764 (comment)

Contribution checklist:

(also see CONTRIBUTING.rst for details)

  • wrote descriptive pull request text
  • added/updated test(s)
  • updated/extended the documentation
  • added relevant issue keyword
    in message body
  • added news fragment in changelog folder
    • fragment name: <issue number>.<type>.rst for example (588.bugfix.rst)
    • <type> is must be one of bugfix, feature, deprecation, breaking, doc, misc
    • if PR has no issue: consider creating one first or change it to the PR number after creating the PR
    • "sign" fragment with -- by :user:`<your username>`.
    • please, use full sentences with correct case and punctuation, for example:
      Fixed an issue with non-ascii contents in doctest text files -- by :user:`superuser`.
    • also see examples
  • added yourself to CONTRIBUTORS (preserving alphabetical order)

webknjaz added a commit to webknjaz/tox that referenced this pull request Aug 23, 2021
@webknjaz webknjaz force-pushed the docs/sphinx-favicon branch from 0a6c7b2 to 7dd33e3 Compare August 23, 2021 16:40
Copy link
Member

@gaborbernat gaborbernat left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For what's worth the latest already does this https://tox.readthedocs.io/en/rewrite/ 😉

@webknjaz webknjaz force-pushed the docs/sphinx-favicon branch from 7dd33e3 to 95c0ab1 Compare August 23, 2021 16:42
@webknjaz
Copy link
Contributor Author

For what's worth the latest already does this tox.readthedocs.io/en/rewrite

Cool! Did you consider also using Furo for that?

@gaborbernat
Copy link
Member

Cool! Did you consider also using Furo for that?

I did, but I'm not yet ready to give up on stretch to screen width feature 😆

@webknjaz
Copy link
Contributor Author

I did, but I'm not yet ready to give up on stretch to screen width feature

Doesn't this reduce readability?

@gaborbernat
Copy link
Member

Doesn't this reduce readability?

In my eyes improves it 😊

@gaborbernat gaborbernat merged commit 5657a14 into tox-dev:master Aug 27, 2021
mergify bot pushed a commit to andrewbolster/bolster that referenced this pull request Sep 16, 2021
Bumps [tox](https://github.com/tox-dev/tox) from 3.24.3 to 3.24.4.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.24.4 (2021-09-16)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed handling of <code>-e ALL</code> in parallel mode by ignoring the <code>ALL</code> in subprocesses -- by :user:<code>guahki</code>.
<code>[#2167](tox-dev/tox#2167) &lt;https://github.com/tox-dev/tox/issues/2167&gt;</code>_</li>
<li>Prevent tox from using a truncated interpreter when using
<code>TOX_LIMITED_SHEBANG</code> -- by :user:<code>jdknight</code>.
<code>[#2208](tox-dev/tox#2208) &lt;https://github.com/tox-dev/tox/issues/2208&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Enabled the use of the favicon in the Sphinx docs first
introduced in :pull:<code>764</code> but not integrated fully
-- :user:<code>webknjaz</code>
<code>[#2177](tox-dev/tox#2177) &lt;https://github.com/tox-dev/tox/issues/2177&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/50307a5158b37ed75e7cac94ac934d9eb48ab8f5"><code>50307a5</code></a> release 3.24.4</li>
<li><a href="https://github.com/tox-dev/tox/commit/51cc218e71949e90ab7982bbb12a475fcbb90613"><code>51cc218</code></a> venv: do not prepend a truncated shebang interpreter (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2203">#2203</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/3c1c29ab609bf4471d5bf5598585cd76fa890c71"><code>3c1c29a</code></a> Only respect ALL environments when not in parallel (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2207">#2207</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/9f789a770a706bfea0e59181252a68f7d43b5481"><code>9f789a7</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2216">#2216</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/156d4961dd50ee629c3c4c78c09ba6b1c0da76d3"><code>156d496</code></a> Make 3.24.3 a headline in the changelog (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2192">#2192</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5ba2a01cd2b20f549bb52fa15b3e9f67d018b44e"><code>5ba2a01</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2190">#2190</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5657a1429f3b7052798385ae6cbb3fa02e3892ca"><code>5657a14</code></a> 🎨📝 Actually use the favicon in Sphinx (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2177">#2177</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0d6c2a790bf10c5dd28d1ea77c334a87c0d28296"><code>0d6c2a7</code></a> 🐛📝 Suppress epub unknown MIME warnings (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2178">#2178</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/f5426133405746ae909dfbcebff5f64c14dfb088"><code>f542613</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2176">#2176</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/69329f747bf42103439f6f42566a2c5541769627"><code>69329f7</code></a> 📝 Document when <code>temp_dir</code> setting and substitutions appeared (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2175">#2175</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.3...3.24.4">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tox&package-manager=pip&previous-version=3.24.3&new-version=3.24.4)](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>
bors bot added a commit to meilisearch/meilisearch-python that referenced this pull request Oct 6, 2021
322: Bump tox from 3.24.3 to 3.24.4 r=alallema a=dependabot[bot]

[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.3 to 3.24.4.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.24.4 (2021-09-16)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed handling of <code>-e ALL</code> in parallel mode by ignoring the <code>ALL</code> in subprocesses -- by :user:<code>guahki</code>.
<code>[#2167](tox-dev/tox#2167) &lt;https://github.com/tox-dev/tox/issues/2167&gt;</code>_</li>
<li>Prevent tox from using a truncated interpreter when using
<code>TOX_LIMITED_SHEBANG</code> -- by :user:<code>jdknight</code>.
<code>[#2208](tox-dev/tox#2208) &lt;https://github.com/tox-dev/tox/issues/2208&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Enabled the use of the favicon in the Sphinx docs first
introduced in :pull:<code>764</code> but not integrated fully
-- :user:<code>webknjaz</code>
<code>[#2177](tox-dev/tox#2177) &lt;https://github.com/tox-dev/tox/issues/2177&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/50307a5158b37ed75e7cac94ac934d9eb48ab8f5"><code>50307a5</code></a> release 3.24.4</li>
<li><a href="https://github.com/tox-dev/tox/commit/51cc218e71949e90ab7982bbb12a475fcbb90613"><code>51cc218</code></a> venv: do not prepend a truncated shebang interpreter (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2203">#2203</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/3c1c29ab609bf4471d5bf5598585cd76fa890c71"><code>3c1c29a</code></a> Only respect ALL environments when not in parallel (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2207">#2207</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/9f789a770a706bfea0e59181252a68f7d43b5481"><code>9f789a7</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2216">#2216</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/156d4961dd50ee629c3c4c78c09ba6b1c0da76d3"><code>156d496</code></a> Make 3.24.3 a headline in the changelog (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2192">#2192</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5ba2a01cd2b20f549bb52fa15b3e9f67d018b44e"><code>5ba2a01</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2190">#2190</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5657a1429f3b7052798385ae6cbb3fa02e3892ca"><code>5657a14</code></a> 🎨📝 Actually use the favicon in Sphinx (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2177">#2177</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0d6c2a790bf10c5dd28d1ea77c334a87c0d28296"><code>0d6c2a7</code></a> 🐛📝 Suppress epub unknown MIME warnings (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2178">#2178</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/f5426133405746ae909dfbcebff5f64c14dfb088"><code>f542613</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2176">#2176</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/69329f747bf42103439f6f42566a2c5541769627"><code>69329f7</code></a> 📝 Document when <code>temp_dir</code> setting and substitutions appeared (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2175">#2175</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.3...3.24.4">compare view</a></li>
</ul>
</details>
<br />


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

You can trigger a rebase of this PR 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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Amélie <[email protected]>
bors bot added a commit to meilisearch/meilisearch-python that referenced this pull request Oct 7, 2021
322: Bump tox from 3.24.3 to 3.24.4 r=alallema a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.3 to 3.24.4.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.24.4 (2021-09-16)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed handling of <code>-e ALL</code> in parallel mode by ignoring the <code>ALL</code> in subprocesses -- by :user:<code>guahki</code>.
<code>[#2167](tox-dev/tox#2167) &lt;https://github.com/tox-dev/tox/issues/2167&gt;</code>_</li>
<li>Prevent tox from using a truncated interpreter when using
<code>TOX_LIMITED_SHEBANG</code> -- by :user:<code>jdknight</code>.
<code>[#2208](tox-dev/tox#2208) &lt;https://github.com/tox-dev/tox/issues/2208&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Enabled the use of the favicon in the Sphinx docs first
introduced in :pull:<code>764</code> but not integrated fully
-- :user:<code>webknjaz</code>
<code>[#2177](tox-dev/tox#2177) &lt;https://github.com/tox-dev/tox/issues/2177&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/50307a5158b37ed75e7cac94ac934d9eb48ab8f5"><code>50307a5</code></a> release 3.24.4</li>
<li><a href="https://github.com/tox-dev/tox/commit/51cc218e71949e90ab7982bbb12a475fcbb90613"><code>51cc218</code></a> venv: do not prepend a truncated shebang interpreter (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2203">#2203</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/3c1c29ab609bf4471d5bf5598585cd76fa890c71"><code>3c1c29a</code></a> Only respect ALL environments when not in parallel (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2207">#2207</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/9f789a770a706bfea0e59181252a68f7d43b5481"><code>9f789a7</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2216">#2216</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/156d4961dd50ee629c3c4c78c09ba6b1c0da76d3"><code>156d496</code></a> Make 3.24.3 a headline in the changelog (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2192">#2192</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5ba2a01cd2b20f549bb52fa15b3e9f67d018b44e"><code>5ba2a01</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2190">#2190</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5657a1429f3b7052798385ae6cbb3fa02e3892ca"><code>5657a14</code></a> 🎨📝 Actually use the favicon in Sphinx (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2177">#2177</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0d6c2a790bf10c5dd28d1ea77c334a87c0d28296"><code>0d6c2a7</code></a> 🐛📝 Suppress epub unknown MIME warnings (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2178">#2178</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/f5426133405746ae909dfbcebff5f64c14dfb088"><code>f542613</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2176">#2176</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/69329f747bf42103439f6f42566a2c5541769627"><code>69329f7</code></a> 📝 Document when <code>temp_dir</code> setting and substitutions appeared (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2175">#2175</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.3...3.24.4">compare view</a></li>
</ul>
</details>
<br />


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

You can trigger a rebase of this PR 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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bors bot added a commit to meilisearch/docs-scraper that referenced this pull request Feb 11, 2022
180: Bump tox from 3.24.3 to 3.24.5 r=brunoocasali a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.3 to 3.24.5.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<p>v3.24.5 (2021-12-29)
Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed an issue where <code>usedevelop</code> would cause an invocation error if setup.py does not exist. -- by :user:<code>VincentVanlaer</code>
<code>[#2197](tox-dev/tox#2197) &lt;https://github.com/tox-dev/tox/issues/2197&gt;</code>_</li>
</ul>
<h2>v3.24.4 (2021-09-16)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed handling of <code>-e ALL</code> in parallel mode by ignoring the <code>ALL</code> in subprocesses -- by :user:<code>guahki</code>.
<code>[#2167](tox-dev/tox#2167) &lt;https://github.com/tox-dev/tox/issues/2167&gt;</code>_</li>
<li>Prevent tox from using a truncated interpreter when using
<code>TOX_LIMITED_SHEBANG</code> -- by :user:<code>jdknight</code>.
<code>[#2208](tox-dev/tox#2208) &lt;https://github.com/tox-dev/tox/issues/2208&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Enabled the use of the favicon in the Sphinx docs first
introduced in :pull:<code>764</code> but not integrated fully
-- :user:<code>webknjaz</code>
<code>[#2177](tox-dev/tox#2177) &lt;https://github.com/tox-dev/tox/issues/2177&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/8cf6330195c078545bcbff52c8d31df12da9944f"><code>8cf6330</code></a> release 3.24.5</li>
<li><a href="https://github.com/tox-dev/tox/commit/72e239141d7fbe9f16093f7e1a861eb69ea7e451"><code>72e2391</code></a> Do not reinstall in develop mode without setup.py (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2273">#2273</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0985677b6a934c9698a5b9e948417560903889b3"><code>0985677</code></a> Move CI to Github Actions (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2293">#2293</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/717b7644a2376c0178ad293c41c76ff6631bdc46"><code>717b764</code></a> Fix typos (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2253">#2253</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/4cf816c97de18dca9d99dc86fec341c1d2c4a20a"><code>4cf816c</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2248">#2248</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/30dbb40f7cce82001b9c269248184057092002dc"><code>30dbb40</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2246">#2246</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5f2aaf0afbf1d4887b06cebff7acf14c2ed29cad"><code>5f2aaf0</code></a> Declare support for Python 3.10 and update links (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2221">#2221</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/fed6e7a59158412efc91fdde260b69e698a1d091"><code>fed6e7a</code></a> [pre-commit.ci] pre-commit autoupdate</li>
<li><a href="https://github.com/tox-dev/tox/commit/a2370f4ad055cb5d570745d3a06016a7ea76d6cb"><code>a2370f4</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2228">#2228</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/59742ec427bf97cf08eface32c7a58ca8f5c5926"><code>59742ec</code></a> Update changelog.rst</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.3...3.24.5">compare view</a></li>
</ul>
</details>
<br />


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

You can trigger a rebase of this PR 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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants