From c223cff79adc6478d004ebfad03f25b3bed816c3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 11:17:05 -0700 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate (#3135) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.4.0...v4.5.0) - [github.com/codespell-project/codespell: v2.2.5 → v2.2.6](https://github.com/codespell-project/codespell/compare/v2.2.5...v2.2.6) - [github.com/astral-sh/ruff-pre-commit: v0.0.291 → v0.0.292](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.291...v0.0.292) Signed-off-by: Bernát Gábor Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 8 ++++---- docs/changelog.rst | 2 +- docs/upgrading.rst | 4 ++-- src/tox/config/loader/ini/replace.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 462f9d5a2..3549b982a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,15 +1,15 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/psf/black - rev: 23.9.1 + rev: 23.10.0 hooks: - id: black - repo: https://github.com/codespell-project/codespell - rev: v2.2.5 + rev: v2.2.6 hooks: - id: codespell args: ["--ignore-words-list", "crate,releas", "--skip", "*.svg"] @@ -36,7 +36,7 @@ repos: - id: blacken-docs additional_dependencies: [black==23.7] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.0.291 + rev: v0.1.1 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/docs/changelog.rst b/docs/changelog.rst index 5b6e2dd68..c143c6cbe 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -538,7 +538,7 @@ Bugfixes - 4.1.1 Improved Documentation - 4.1.1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- Add faq entry about re-use of environments - by :user:`jugmac00`. (:issue:`2788`) +- Add faq entry about reuse of environments - by :user:`jugmac00`. (:issue:`2788`) v4.1.0 (2022-12-29) diff --git a/docs/upgrading.rst b/docs/upgrading.rst index 21da5b26d..cf1aa46cd 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -136,10 +136,10 @@ Output changes - We now use colors for reporting, to help make the output easier to read for humans. This can be disabled via the ``TERM=dumb`` or ``NO_COLOR=1`` environment variables, or the ``--colored no`` CLI argument. -Re-use of environments +Reuse of environments ---------------------- -- It is no longer possible to re-use environments. While this might have been possible with tox version 3, this +- It is no longer possible to reuse environments. While this might have been possible with tox version 3, this behavior was never supported, and possibly caused wrong results as illustrated in the following example. .. code-block:: ini diff --git a/src/tox/config/loader/ini/replace.py b/src/tox/config/loader/ini/replace.py index c7e83d93e..2b7c11069 100644 --- a/src/tox/config/loader/ini/replace.py +++ b/src/tox/config/loader/ini/replace.py @@ -37,7 +37,7 @@ class MatchRecursionError(ValueError): - """Could not stabalize on replacement value.""" + """Could not stabilize on replacement value.""" class MatchError(Exception):