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

install_command only accepts a single command, but the documentation says that I can “provide arbitrary commands” to it #2433

Closed
oakkitten opened this issue Jun 2, 2022 · 7 comments · Fixed by #2509

Comments

@oakkitten
Copy link

The documentation for install_command says,

Note: You can also provide arbitrary commands to the install_command. (...)

I don't think this is correct. Given this config,

[tox]
skip_install = true
skipsdist = true
envlist = foo

[testenv]
install_command =
    echo '!!!!!!!!!!!!!!!!!!!!!!! install 1' {packages}
    echo '!!!!!!!!!!!!!!!!!!!!!!! install 2' {packages}
commands =
    echo '!!!!!!!!!!!!!!!!!!!!!!! test' {envname}
allowlist_externals =
    echo
deps =
    zoo

tox 3 will only execute the first command:

$ python -m tox -rvv
...
[1190] /mnt/c/Users/s/tox_install_command_test$ /usr/bin/echo '!!!!!!!!!!!!!!!!!!!!!!! install 1' zoo
!!!!!!!!!!!!!!!!!!!!!!! install 1 zoo
foo finish: getenv /mnt/c/Users/s/tox_install_command_test/.tox/foo after 17.95 seconds
...

and tox 4 will execute what appears to be the two commands glued together as one, but only replacing the first {packages}

$ python -m tox -rvv
...
foo: 20300 W install_deps> echo '!!!!!!!!!!!!!!!!!!!!!!! install 1' zoo echo '!!!!!!!!!!!!!!!!!!!!!!! install 2' '{packages}' [tox/tox_env/api.py:398]
!!!!!!!!!!!!!!!!!!!!!!! install 1 zoo echo !!!!!!!!!!!!!!!!!!!!!!! install 2 {packages}
foo: 20324 I exit 0 (0.01 seconds) /mnt/c/Users/s/tox_install_command_test> echo '!!!!!!!!!!!!!!!!!!!!!!! install 1' zoo echo '!!!!!!!!!!!!!!!!!!!!!!! install 2' '{packages}' pid=1269 [tox/execute/api.py:275]
...

I suppose that tox should:

  • Change the documentation so that it doesn't say that I can use command“s” in install_command;
  • Produce an error if I try, instead of ignoring lines or gluing them together.

Also, tox might:

  • Support multiple installation commands via install_commands (note the ”s”), and only require {packages} to be passed to one of them;
  • Deprecate install_command in favor of the above.

See logs: tox3.txt, tox4.txt.

@oakkitten oakkitten added the bug:normal affects many people or has quite an impact label Jun 2, 2022
@oakkitten
Copy link
Author

Also, suppose you want to have different install_command for different envs, you might do something like this, which works:

$ cat tox.ini
[tox]
skip_install = true
skipsdist = true
envlist = woo-{foo,bar,baz3}

[testenv]
install_command =
    foo: echo installing {packages} foo!!!
    bar: echo installing {packages} bar!!!
    baz3: echo installing {packages} baz3!!!
allowlist_externals =
    echo
deps =
    zoo
$ python -m tox -rvv | grep 'install_deps>'
woo-foo: 21282 W install_deps> echo installing zoo 'foo!!!' [tox/tox_env/api.py:398]
woo-bar: 41848 W install_deps> echo installing zoo 'bar!!!' [tox/tox_env/api.py:398]
woo-baz3: 64244 W install_deps> echo installing zoo 'baz3!!!' [tox/tox_env/api.py:398]

But if you try going multiline, things become weird fast:

$ cat tox.ini
[tox]
skip_install = true
skipsdist = true
envlist = woo-{foo,bar,baz3}

[testenv]
install_command =
    foo: echo installing {packages} foo!!!
    bar: echo installing {packages} bar!!! \
        hello
    baz3: echo installing {packages} baz3!!!
allowlist_externals =
    echo
deps =
    zoo
$ python -m tox -rvv | grep 'install_deps>'
woo-foo: 19778 W install_deps> echo installing zoo 'foo!!!' hello [tox/tox_env/api.py:398]
woo-bar: 39174 W install_deps> echo installing zoo 'bar!!!' hello [tox/tox_env/api.py:398]
woo-baz3: 59575 W install_deps> hello echo installing zoo 'baz3!!!' [tox/tox_env/api.py:398]
$ cat tox.ini
[tox]
skip_install = true
skipsdist = true
envlist = woo-{foo,bar,baz3}

[testenv]
install_command =
    foo: echo installing {packages} foo!!!
    bar: echo installing {packages} bar!!!
    baz3: echo installing {packages} baz3!!! '\
        ' hello
allowlist_externals =
    echo
deps =
    zoo
$ python -m tox -rvv | grep 'install_deps>'
woo-foo: 20250 W install_deps> echo installing zoo 'foo!!!' ''"'"' hello' [tox/tox_env/api.py:398]
woo-bar: 40360 W install_deps> echo installing zoo 'bar!!!' ''"'"' hello' [tox/tox_env/api.py:398]
woo-baz3: 62490 W install_deps> echo installing zoo 'baz3!!!' '' hello [tox/tox_env/api.py:398]

The documentation doesn't suggest that this is supposed to work in the first place, so this part is not a bug per se. I'm only mentioning this as this behavior might be indicative of an issue elsewhere.

@gaborbernat
Copy link
Member

I think here the documentation is where the issue is. The install_command was designed and always only allowed one command to be specified. And I'd keep that behaviour. If you want to call multiple ones you should create a shim python script that forwards our one call to multiple ones.

@gaborbernat gaborbernat added area:documentation and removed bug:normal affects many people or has quite an impact labels Jun 3, 2022
@oakkitten
Copy link
Author

May I ask why not allow multiple commands? Besides, wouldn't reusing the logic from commands simplify things? Anyway, in the case of a single command, it would be nice to have an error of sorts if the user does try to put multiple.

@gaborbernat
Copy link
Member

May I ask why not allow multiple commands?

To limit complexity in tox. 1 command is enough 99% of time and when it's not can be worked around the users.

Anyway, in the case of a single command, it would be nice to have an error of sorts if the user does try to put multiple.

I believe this should happen in tox 4 🤔

@oakkitten
Copy link
Author

To limit complexity in tox.

But if you reused the logic from commands, wouldn't it reduce complexity?

I believe this should happen in tox 4 🤔

While I didn't test with main, the snippets above use 4.0.0b1.

@gaborbernat
Copy link
Member

But if you reused the logic from commands, wouldn't it reduce complexity?

Those two are handled conceptually differently and I'd not overload them. You introduce a lot of complexity there, what if the first command fails and the second succeeds. Again, if you must you can achieve this by writing a custom plugin. The core tox will not support this thought.

@oakkitten
Copy link
Author

With commands, if the first command fails, the second isn't run. I would expect exactly the same behavior from install_command. I am not sure how these are conceptually different.

But I guess since install_command is deprecated it's not worth discussing it. (When will it be removed? I don't think that documentation mentions that it's deprecated.)

jugmac00 added a commit to jugmac00/tox that referenced this issue Oct 1, 2022
jugmac00 added a commit to jugmac00/tox that referenced this issue Oct 1, 2022
meili-bors bot added a commit to meilisearch/docs-scraper that referenced this issue Nov 8, 2022
268: Bump tox from 3.26.0 to 3.27.0 r=alallema a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.26.0 to 3.27.0.
<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>3.27.0</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.26.0 by <a href="https://github.com/gaborbernat"><code>`@​gaborbernat</code></a>` in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2490">tox-dev/tox#2490</a></li>
<li>Drop --build-option flag from isolated build script by <a href="https://github.com/adamchainz"><code>`@​adamchainz</code></a>` in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2497">tox-dev/tox#2497</a></li>
<li>Remove read-only files upon cleanup by <a href="https://github.com/robgom"><code>`@​robgom</code></a>` in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2501">tox-dev/tox#2501</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>`@​pre-commit-ci</code></a>` in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2503">tox-dev/tox#2503</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>`@​pre-commit-ci</code></a>` in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2505">tox-dev/tox#2505</a></li>
<li>Clearly state that <code>install_command</code> only takes one command by <a href="https://github.com/jugmac00"><code>`@​jugmac00</code></a>` in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2509">tox-dev/tox#2509</a></li>
<li>Document problems with plugin and provision env (refs <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2469">#2469</a>) by <a href="https://github.com/ziima"><code>`@​ziima</code></a>` in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2511">tox-dev/tox#2511</a></li>
<li>Provision lock by <a href="https://github.com/masenf"><code>`@​masenf</code></a>` in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2516">tox-dev/tox#2516</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/robgom"><code>`@​robgom</code></a>` made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2501">tox-dev/tox#2501</a></li>
<li><a href="https://github.com/masenf"><code>`@​masenf</code></a>` made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2516">tox-dev/tox#2516</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.26.0...3.27.0">https://github.com/tox-dev/tox/compare/3.26.0...3.27.0</a></p>
</blockquote>
</details>
<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.27.0 (2022-10-25)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Dropped <code>--build-option</code> in isolated builds, an alternative fix for the <code>SetuptoolsDeprecationWarning</code> about using <code>--global-option</code> -- by :user:<code>adamchainz</code>
<code>[#2497](tox-dev/tox#2497) &lt;https://github.com/tox-dev/tox/issues/2497&gt;</code>_</li>
<li>Remove read-only files in <code>ensure_empty_dir</code>.
<code>[#2498](tox-dev/tox#2498) &lt;https://github.com/tox-dev/tox/issues/2498&gt;</code>_</li>
<li>Multiple tox instances no longer clobber the <code>.tox</code> directory when
<code>provision_tox_env</code> is used. - by :user:<code>masenf</code>
<code>[#2515](tox-dev/tox#2515) &lt;https://github.com/tox-dev/tox/issues/2515&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Clarify that <code>install_command</code> only takes one command - by :user:<code>jugmac00</code>
<code>[#2433](tox-dev/tox#2433) &lt;https://github.com/tox-dev/tox/issues/2433&gt;</code>_</li>
<li>Documented problems with plugin and provision env - by :user:<code>ziima</code>.
<code>[#2469](tox-dev/tox#2469) &lt;https://github.com/tox-dev/tox/issues/2469&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/96ff2c97e980866e5f5a668da6cd59eb490a1424"><code>96ff2c9</code></a> release 3.27.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/e378131e14e7db4c7e16a06628fa06c5f73c4ecd"><code>e378131</code></a> Provision lock (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2516">#2516</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/d41bd622ea27b4a591be7aaf8f55560f5037b84f"><code>d41bd62</code></a> Document problems with plugin and provision env (refs <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2469">#2469</a>) (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2511">#2511</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/8282e9e049b8589a4a765d49f6a784691ce3bd2c"><code>8282e9e</code></a> Clearly state that <code>install_command</code> only takes one command</li>
<li><a href="https://github.com/tox-dev/tox/commit/5a97802cc90bd7924d29197ba00559f3c7a018bf"><code>5a97802</code></a> [pre-commit.ci] pre-commit autoupdate</li>
<li><a href="https://github.com/tox-dev/tox/commit/0284ab257d363e7bac20ea5cf91fec993b2ca844"><code>0284ab2</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2503">#2503</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/f233d5393fe360af50959d9e3c166e67aaecb469"><code>f233d53</code></a> Remove read-only files upon cleanup (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2501">#2501</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/2e0def46729c010a8b00fa9e1460b92558b7af0d"><code>2e0def4</code></a> Drop --build-option flag from isolated build script (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2497">#2497</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/7db7771d4411d4fd5ae3d887fd43ca22d4e3f41e"><code>7db7771</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2490">#2490</a> from tox-dev/release-3.26.0</li>
<li>See full diff in <a href="https://github.com/tox-dev/tox/compare/3.26.0...3.27.0">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.26.0&new-version=3.27.0)](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>
github-actions bot pushed a commit to ryankanno/cookiecutter-py that referenced this issue Dec 5, 2022
[//]: # (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.25.1 to 3.27.1.
<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>3.27.1</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.27.0 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2520">tox-dev/tox#2520</a></li>
<li>setup.cfg: Replace deprecated license_file with license_files by <a href="https://github.com/mgorny"><code>@​mgorny</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2521">tox-dev/tox#2521</a></li>
<li>Fix PYTHONPATH passed to envreport / &quot;pip freeze&quot; by <a href="https://github.com/f3flight"><code>@​f3flight</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2529">tox-dev/tox#2529</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/mgorny"><code>@​mgorny</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2521">tox-dev/tox#2521</a></li>
<li><a href="https://github.com/f3flight"><code>@​f3flight</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2529">tox-dev/tox#2529</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.27.0...3.27.1">https://github.com/tox-dev/tox/compare/3.27.0...3.27.1</a></p>
<h2>3.27.0</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.26.0 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2490">tox-dev/tox#2490</a></li>
<li>Drop --build-option flag from isolated build script by <a href="https://github.com/adamchainz"><code>@​adamchainz</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2497">tox-dev/tox#2497</a></li>
<li>Remove read-only files upon cleanup by <a href="https://github.com/robgom"><code>@​robgom</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2501">tox-dev/tox#2501</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2503">tox-dev/tox#2503</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2505">tox-dev/tox#2505</a></li>
<li>Clearly state that <code>install_command</code> only takes one command by <a href="https://github.com/jugmac00"><code>@​jugmac00</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2509">tox-dev/tox#2509</a></li>
<li>Document problems with plugin and provision env (refs <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2469">#2469</a>) by <a href="https://github.com/ziima"><code>@​ziima</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2511">tox-dev/tox#2511</a></li>
<li>Provision lock by <a href="https://github.com/masenf"><code>@​masenf</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2516">tox-dev/tox#2516</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/robgom"><code>@​robgom</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2501">tox-dev/tox#2501</a></li>
<li><a href="https://github.com/masenf"><code>@​masenf</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2516">tox-dev/tox#2516</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.26.0...3.27.0">https://github.com/tox-dev/tox/compare/3.26.0...3.27.0</a></p>
<h2>3.26.0</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.25.1 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2451">tox-dev/tox#2451</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2454">tox-dev/tox#2454</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2465">tox-dev/tox#2465</a></li>
<li>Check 3.11 support v3 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2468">tox-dev/tox#2468</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2471">tox-dev/tox#2471</a></li>
<li>Update CODEOWNERS by <a href="https://github.com/jugmac00"><code>@​jugmac00</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2472">tox-dev/tox#2472</a></li>
<li>Fix fallback to &quot;python&quot; environment when &quot;isolated_build = true&quot; is set by <a href="https://github.com/Unrud"><code>@​Unrud</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2475">tox-dev/tox#2475</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2477">tox-dev/tox#2477</a></li>
<li>Use tomllib from the standard library on Python 3.11+ by <a href="https://github.com/hroncok"><code>@​hroncok</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2463">tox-dev/tox#2463</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2485">tox-dev/tox#2485</a></li>
<li>Fix SetuptoolsDeprecationWarning about using --global-option by <a href="https://github.com/adamchainz"><code>@​adamchainz</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2487">tox-dev/tox#2487</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/Unrud"><code>@​Unrud</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2475">tox-dev/tox#2475</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.25.1...3.26.0">https://github.com/tox-dev/tox/compare/3.25.1...3.26.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/3.27.1/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.27.1 (2022-11-13)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Replaced deprecated <code>license_file</code> key with <code>license_files</code> in <code>setup.cfg</code> -- by :user:<code>mgorny</code>.
<code>[#2521](tox-dev/tox#2521) &lt;https://github.com/tox-dev/tox/issues/2521&gt;</code>_</li>
<li>Add env cleanup to envreport - fix PYTHONPATH leak into &quot;envreport&quot; -- by :user:<code>f3flight</code>.
<code>[#2528](tox-dev/tox#2528) &lt;https://github.com/tox-dev/tox/issues/2528&gt;</code>_</li>
</ul>
<h2>v3.27.0 (2022-10-25)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Dropped <code>--build-option</code> in isolated builds, an alternative fix for the <code>SetuptoolsDeprecationWarning</code> about using <code>--global-option</code> -- by :user:<code>adamchainz</code>
<code>[#2497](tox-dev/tox#2497) &lt;https://github.com/tox-dev/tox/issues/2497&gt;</code>_</li>
<li>Remove read-only files in <code>ensure_empty_dir</code>.
<code>[#2498](tox-dev/tox#2498) &lt;https://github.com/tox-dev/tox/issues/2498&gt;</code>_</li>
<li>Multiple tox instances no longer clobber the <code>.tox</code> directory when
<code>provision_tox_env</code> is used. - by :user:<code>masenf</code>
<code>[#2515](tox-dev/tox#2515) &lt;https://github.com/tox-dev/tox/issues/2515&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Clarify that <code>install_command</code> only takes one command - by :user:<code>jugmac00</code>
<code>[#2433](tox-dev/tox#2433) &lt;https://github.com/tox-dev/tox/issues/2433&gt;</code>_</li>
<li>Documented problems with plugin and provision env - by :user:<code>ziima</code>.
<code>[#2469](tox-dev/tox#2469) &lt;https://github.com/tox-dev/tox/issues/2469&gt;</code>_</li>
</ul>
<h2>v3.26.0 (2022-09-07)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fix fallback to <code>python</code> environment when <code>isolated_build = true</code> is set -- by :user:<code>Unrud</code>
<code>[#2474](tox-dev/tox#2474) &lt;https://github.com/tox-dev/tox/issues/2474&gt;</code>_</li>
<li>Fixed <code>SetuptoolsDeprecationWarning</code> about using <code>--global-option</code> -- by :user:<code>adamchainz</code>
<code>[#2478](tox-dev/tox#2478) &lt;https://github.com/tox-dev/tox/issues/2478&gt;</code>_</li>
</ul>
<p>Features
^^^^^^^^</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/1d5d3b8df20d3911b47b696aa4f78207f843db28"><code>1d5d3b8</code></a> release 3.27.1</li>
<li><a href="https://github.com/tox-dev/tox/commit/b61e7808bf0e7dd0cd5337ab66a714dc7af296b4"><code>b61e780</code></a> Fix changelog</li>
<li><a href="https://github.com/tox-dev/tox/commit/64732211da05f98df940032ab4651c4bbf88aab3"><code>6473221</code></a> Fix PYTHONPATH passed to envreport / &quot;pip freeze&quot; (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2529">#2529</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0f0c505244f82b85b4c73f5f7ba33bc499b5e163"><code>0f0c505</code></a> Simplify docs conf</li>
<li><a href="https://github.com/tox-dev/tox/commit/95e7124eb8ecb249fb96c7ffe23785575b372fa3"><code>95e7124</code></a> Update check.yml</li>
<li><a href="https://github.com/tox-dev/tox/commit/b123cdbd78700b119edc0b459c24fa686c209769"><code>b123cdb</code></a> setup.cfg: Replace deprecated license_file with license_files (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2521">#2521</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/d0be3c6cc4b93aa53bcf2c7929b4d0fd4b7d063a"><code>d0be3c6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2520">#2520</a> from tox-dev/release-3.27.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/96ff2c97e980866e5f5a668da6cd59eb490a1424"><code>96ff2c9</code></a> release 3.27.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/e378131e14e7db4c7e16a06628fa06c5f73c4ecd"><code>e378131</code></a> Provision lock (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2516">#2516</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/d41bd622ea27b4a591be7aaf8f55560f5037b84f"><code>d41bd62</code></a> Document problems with plugin and provision env (refs <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2469">#2469</a>) (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2511">#2511</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.25.1...3.27.1">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.25.1&new-version=3.27.1)](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>
github-actions bot pushed a commit to ryankanno/cookiecutter-py that referenced this issue Dec 5, 2022
…ckage_name}}

[//]: # (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.25.1 to 3.27.1.
<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>3.27.1</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.27.0 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2520">tox-dev/tox#2520</a></li>
<li>setup.cfg: Replace deprecated license_file with license_files by <a href="https://github.com/mgorny"><code>@​mgorny</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2521">tox-dev/tox#2521</a></li>
<li>Fix PYTHONPATH passed to envreport / &quot;pip freeze&quot; by <a href="https://github.com/f3flight"><code>@​f3flight</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2529">tox-dev/tox#2529</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/mgorny"><code>@​mgorny</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2521">tox-dev/tox#2521</a></li>
<li><a href="https://github.com/f3flight"><code>@​f3flight</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2529">tox-dev/tox#2529</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.27.0...3.27.1">https://github.com/tox-dev/tox/compare/3.27.0...3.27.1</a></p>
<h2>3.27.0</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.26.0 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2490">tox-dev/tox#2490</a></li>
<li>Drop --build-option flag from isolated build script by <a href="https://github.com/adamchainz"><code>@​adamchainz</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2497">tox-dev/tox#2497</a></li>
<li>Remove read-only files upon cleanup by <a href="https://github.com/robgom"><code>@​robgom</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2501">tox-dev/tox#2501</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2503">tox-dev/tox#2503</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2505">tox-dev/tox#2505</a></li>
<li>Clearly state that <code>install_command</code> only takes one command by <a href="https://github.com/jugmac00"><code>@​jugmac00</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2509">tox-dev/tox#2509</a></li>
<li>Document problems with plugin and provision env (refs <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2469">#2469</a>) by <a href="https://github.com/ziima"><code>@​ziima</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2511">tox-dev/tox#2511</a></li>
<li>Provision lock by <a href="https://github.com/masenf"><code>@​masenf</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2516">tox-dev/tox#2516</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/robgom"><code>@​robgom</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2501">tox-dev/tox#2501</a></li>
<li><a href="https://github.com/masenf"><code>@​masenf</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2516">tox-dev/tox#2516</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.26.0...3.27.0">https://github.com/tox-dev/tox/compare/3.26.0...3.27.0</a></p>
<h2>3.26.0</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.25.1 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2451">tox-dev/tox#2451</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2454">tox-dev/tox#2454</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2465">tox-dev/tox#2465</a></li>
<li>Check 3.11 support v3 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2468">tox-dev/tox#2468</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2471">tox-dev/tox#2471</a></li>
<li>Update CODEOWNERS by <a href="https://github.com/jugmac00"><code>@​jugmac00</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2472">tox-dev/tox#2472</a></li>
<li>Fix fallback to &quot;python&quot; environment when &quot;isolated_build = true&quot; is set by <a href="https://github.com/Unrud"><code>@​Unrud</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2475">tox-dev/tox#2475</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2477">tox-dev/tox#2477</a></li>
<li>Use tomllib from the standard library on Python 3.11+ by <a href="https://github.com/hroncok"><code>@​hroncok</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2463">tox-dev/tox#2463</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2485">tox-dev/tox#2485</a></li>
<li>Fix SetuptoolsDeprecationWarning about using --global-option by <a href="https://github.com/adamchainz"><code>@​adamchainz</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2487">tox-dev/tox#2487</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/Unrud"><code>@​Unrud</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2475">tox-dev/tox#2475</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.25.1...3.26.0">https://github.com/tox-dev/tox/compare/3.25.1...3.26.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/3.27.1/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.27.1 (2022-11-13)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Replaced deprecated <code>license_file</code> key with <code>license_files</code> in <code>setup.cfg</code> -- by :user:<code>mgorny</code>.
<code>[#2521](tox-dev/tox#2521) &lt;https://github.com/tox-dev/tox/issues/2521&gt;</code>_</li>
<li>Add env cleanup to envreport - fix PYTHONPATH leak into &quot;envreport&quot; -- by :user:<code>f3flight</code>.
<code>[#2528](tox-dev/tox#2528) &lt;https://github.com/tox-dev/tox/issues/2528&gt;</code>_</li>
</ul>
<h2>v3.27.0 (2022-10-25)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Dropped <code>--build-option</code> in isolated builds, an alternative fix for the <code>SetuptoolsDeprecationWarning</code> about using <code>--global-option</code> -- by :user:<code>adamchainz</code>
<code>[#2497](tox-dev/tox#2497) &lt;https://github.com/tox-dev/tox/issues/2497&gt;</code>_</li>
<li>Remove read-only files in <code>ensure_empty_dir</code>.
<code>[#2498](tox-dev/tox#2498) &lt;https://github.com/tox-dev/tox/issues/2498&gt;</code>_</li>
<li>Multiple tox instances no longer clobber the <code>.tox</code> directory when
<code>provision_tox_env</code> is used. - by :user:<code>masenf</code>
<code>[#2515](tox-dev/tox#2515) &lt;https://github.com/tox-dev/tox/issues/2515&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Clarify that <code>install_command</code> only takes one command - by :user:<code>jugmac00</code>
<code>[#2433](tox-dev/tox#2433) &lt;https://github.com/tox-dev/tox/issues/2433&gt;</code>_</li>
<li>Documented problems with plugin and provision env - by :user:<code>ziima</code>.
<code>[#2469](tox-dev/tox#2469) &lt;https://github.com/tox-dev/tox/issues/2469&gt;</code>_</li>
</ul>
<h2>v3.26.0 (2022-09-07)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fix fallback to <code>python</code> environment when <code>isolated_build = true</code> is set -- by :user:<code>Unrud</code>
<code>[#2474](tox-dev/tox#2474) &lt;https://github.com/tox-dev/tox/issues/2474&gt;</code>_</li>
<li>Fixed <code>SetuptoolsDeprecationWarning</code> about using <code>--global-option</code> -- by :user:<code>adamchainz</code>
<code>[#2478](tox-dev/tox#2478) &lt;https://github.com/tox-dev/tox/issues/2478&gt;</code>_</li>
</ul>
<p>Features
^^^^^^^^</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/1d5d3b8df20d3911b47b696aa4f78207f843db28"><code>1d5d3b8</code></a> release 3.27.1</li>
<li><a href="https://github.com/tox-dev/tox/commit/b61e7808bf0e7dd0cd5337ab66a714dc7af296b4"><code>b61e780</code></a> Fix changelog</li>
<li><a href="https://github.com/tox-dev/tox/commit/64732211da05f98df940032ab4651c4bbf88aab3"><code>6473221</code></a> Fix PYTHONPATH passed to envreport / &quot;pip freeze&quot; (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2529">#2529</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0f0c505244f82b85b4c73f5f7ba33bc499b5e163"><code>0f0c505</code></a> Simplify docs conf</li>
<li><a href="https://github.com/tox-dev/tox/commit/95e7124eb8ecb249fb96c7ffe23785575b372fa3"><code>95e7124</code></a> Update check.yml</li>
<li><a href="https://github.com/tox-dev/tox/commit/b123cdbd78700b119edc0b459c24fa686c209769"><code>b123cdb</code></a> setup.cfg: Replace deprecated license_file with license_files (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2521">#2521</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/d0be3c6cc4b93aa53bcf2c7929b4d0fd4b7d063a"><code>d0be3c6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2520">#2520</a> from tox-dev/release-3.27.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/96ff2c97e980866e5f5a668da6cd59eb490a1424"><code>96ff2c9</code></a> release 3.27.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/e378131e14e7db4c7e16a06628fa06c5f73c4ecd"><code>e378131</code></a> Provision lock (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2516">#2516</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/d41bd622ea27b4a591be7aaf8f55560f5037b84f"><code>d41bd62</code></a> Document problems with plugin and provision env (refs <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2469">#2469</a>) (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2511">#2511</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.25.1...3.27.1">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.25.1&new-version=3.27.1)](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>
github-actions bot pushed a commit to ryankanno/py-golf-games that referenced this issue Dec 6, 2022
Bumps [tox](https://github.com/tox-dev/tox) from 3.25.1 to 3.27.1.
<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>3.27.1</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.27.0 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2520">tox-dev/tox#2520</a></li>
<li>setup.cfg: Replace deprecated license_file with license_files by <a href="https://github.com/mgorny"><code>@​mgorny</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2521">tox-dev/tox#2521</a></li>
<li>Fix PYTHONPATH passed to envreport / &quot;pip freeze&quot; by <a href="https://github.com/f3flight"><code>@​f3flight</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2529">tox-dev/tox#2529</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/mgorny"><code>@​mgorny</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2521">tox-dev/tox#2521</a></li>
<li><a href="https://github.com/f3flight"><code>@​f3flight</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2529">tox-dev/tox#2529</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.27.0...3.27.1">https://github.com/tox-dev/tox/compare/3.27.0...3.27.1</a></p>
<h2>3.27.0</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.26.0 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2490">tox-dev/tox#2490</a></li>
<li>Drop --build-option flag from isolated build script by <a href="https://github.com/adamchainz"><code>@​adamchainz</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2497">tox-dev/tox#2497</a></li>
<li>Remove read-only files upon cleanup by <a href="https://github.com/robgom"><code>@​robgom</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2501">tox-dev/tox#2501</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2503">tox-dev/tox#2503</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2505">tox-dev/tox#2505</a></li>
<li>Clearly state that <code>install_command</code> only takes one command by <a href="https://github.com/jugmac00"><code>@​jugmac00</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2509">tox-dev/tox#2509</a></li>
<li>Document problems with plugin and provision env (refs <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2469">#2469</a>) by <a href="https://github.com/ziima"><code>@​ziima</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2511">tox-dev/tox#2511</a></li>
<li>Provision lock by <a href="https://github.com/masenf"><code>@​masenf</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2516">tox-dev/tox#2516</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/robgom"><code>@​robgom</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2501">tox-dev/tox#2501</a></li>
<li><a href="https://github.com/masenf"><code>@​masenf</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2516">tox-dev/tox#2516</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.26.0...3.27.0">https://github.com/tox-dev/tox/compare/3.26.0...3.27.0</a></p>
<h2>3.26.0</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.25.1 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2451">tox-dev/tox#2451</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2454">tox-dev/tox#2454</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2465">tox-dev/tox#2465</a></li>
<li>Check 3.11 support v3 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2468">tox-dev/tox#2468</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2471">tox-dev/tox#2471</a></li>
<li>Update CODEOWNERS by <a href="https://github.com/jugmac00"><code>@​jugmac00</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2472">tox-dev/tox#2472</a></li>
<li>Fix fallback to &quot;python&quot; environment when &quot;isolated_build = true&quot; is set by <a href="https://github.com/Unrud"><code>@​Unrud</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2475">tox-dev/tox#2475</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2477">tox-dev/tox#2477</a></li>
<li>Use tomllib from the standard library on Python 3.11+ by <a href="https://github.com/hroncok"><code>@​hroncok</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2463">tox-dev/tox#2463</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2485">tox-dev/tox#2485</a></li>
<li>Fix SetuptoolsDeprecationWarning about using --global-option by <a href="https://github.com/adamchainz"><code>@​adamchainz</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2487">tox-dev/tox#2487</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/Unrud"><code>@​Unrud</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2475">tox-dev/tox#2475</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.25.1...3.26.0">https://github.com/tox-dev/tox/compare/3.25.1...3.26.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/3.27.1/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.27.1 (2022-11-13)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Replaced deprecated <code>license_file</code> key with <code>license_files</code> in <code>setup.cfg</code> -- by :user:<code>mgorny</code>.
<code>[#2521](tox-dev/tox#2521) &lt;https://github.com/tox-dev/tox/issues/2521&gt;</code>_</li>
<li>Add env cleanup to envreport - fix PYTHONPATH leak into &quot;envreport&quot; -- by :user:<code>f3flight</code>.
<code>[#2528](tox-dev/tox#2528) &lt;https://github.com/tox-dev/tox/issues/2528&gt;</code>_</li>
</ul>
<h2>v3.27.0 (2022-10-25)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Dropped <code>--build-option</code> in isolated builds, an alternative fix for the <code>SetuptoolsDeprecationWarning</code> about using <code>--global-option</code> -- by :user:<code>adamchainz</code>
<code>[#2497](tox-dev/tox#2497) &lt;https://github.com/tox-dev/tox/issues/2497&gt;</code>_</li>
<li>Remove read-only files in <code>ensure_empty_dir</code>.
<code>[#2498](tox-dev/tox#2498) &lt;https://github.com/tox-dev/tox/issues/2498&gt;</code>_</li>
<li>Multiple tox instances no longer clobber the <code>.tox</code> directory when
<code>provision_tox_env</code> is used. - by :user:<code>masenf</code>
<code>[#2515](tox-dev/tox#2515) &lt;https://github.com/tox-dev/tox/issues/2515&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Clarify that <code>install_command</code> only takes one command - by :user:<code>jugmac00</code>
<code>[#2433](tox-dev/tox#2433) &lt;https://github.com/tox-dev/tox/issues/2433&gt;</code>_</li>
<li>Documented problems with plugin and provision env - by :user:<code>ziima</code>.
<code>[#2469](tox-dev/tox#2469) &lt;https://github.com/tox-dev/tox/issues/2469&gt;</code>_</li>
</ul>
<h2>v3.26.0 (2022-09-07)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fix fallback to <code>python</code> environment when <code>isolated_build = true</code> is set -- by :user:<code>Unrud</code>
<code>[#2474](tox-dev/tox#2474) &lt;https://github.com/tox-dev/tox/issues/2474&gt;</code>_</li>
<li>Fixed <code>SetuptoolsDeprecationWarning</code> about using <code>--global-option</code> -- by :user:<code>adamchainz</code>
<code>[#2478](tox-dev/tox#2478) &lt;https://github.com/tox-dev/tox/issues/2478&gt;</code>_</li>
</ul>
<p>Features
^^^^^^^^</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/1d5d3b8df20d3911b47b696aa4f78207f843db28"><code>1d5d3b8</code></a> release 3.27.1</li>
<li><a href="https://github.com/tox-dev/tox/commit/b61e7808bf0e7dd0cd5337ab66a714dc7af296b4"><code>b61e780</code></a> Fix changelog</li>
<li><a href="https://github.com/tox-dev/tox/commit/64732211da05f98df940032ab4651c4bbf88aab3"><code>6473221</code></a> Fix PYTHONPATH passed to envreport / &quot;pip freeze&quot; (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2529">#2529</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0f0c505244f82b85b4c73f5f7ba33bc499b5e163"><code>0f0c505</code></a> Simplify docs conf</li>
<li><a href="https://github.com/tox-dev/tox/commit/95e7124eb8ecb249fb96c7ffe23785575b372fa3"><code>95e7124</code></a> Update check.yml</li>
<li><a href="https://github.com/tox-dev/tox/commit/b123cdbd78700b119edc0b459c24fa686c209769"><code>b123cdb</code></a> setup.cfg: Replace deprecated license_file with license_files (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2521">#2521</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/d0be3c6cc4b93aa53bcf2c7929b4d0fd4b7d063a"><code>d0be3c6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2520">#2520</a> from tox-dev/release-3.27.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/96ff2c97e980866e5f5a668da6cd59eb490a1424"><code>96ff2c9</code></a> release 3.27.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/e378131e14e7db4c7e16a06628fa06c5f73c4ecd"><code>e378131</code></a> Provision lock (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2516">#2516</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/d41bd622ea27b4a591be7aaf8f55560f5037b84f"><code>d41bd62</code></a> Document problems with plugin and provision env (refs <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2469">#2469</a>) (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2511">#2511</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.25.1...3.27.1">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.25.1&new-version=3.27.1)](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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
2 participants