From d969d4c2eb81298593f8dc850f2f4f2ab11e3f53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 May 2024 11:51:23 +0200 Subject: [PATCH] chore: update codespell requirement from ~=2.2.6 to >=2.2.6,<2.4.0 (#690) * chore: update codespell requirement from ~=2.2.6 to >=2.2.6,<2.4.0 Updates the requirements on [codespell](https://github.com/codespell-project/codespell) to permit the latest version. - [Release notes](https://github.com/codespell-project/codespell/releases) - [Commits](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.3.0) --- updated-dependencies: - dependency-name: codespell dependency-type: direct:production ... Signed-off-by: dependabot[bot] * bump: Bump codespell in pre-commit --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Guillaume Mulocher --- .pre-commit-config.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bdfb5abf1..61c872cdc 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -65,7 +65,7 @@ repos: - --rcfile=pyproject.toml # Link to config file - repo: https://github.com/codespell-project/codespell - rev: v2.2.6 + rev: v2.3.0 hooks: - id: codespell name: Checks for common misspellings in text files. diff --git a/pyproject.toml b/pyproject.toml index 0c7a91550..d1213e913 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ cli = [ ] dev = [ "bumpver>=2023.1129", - "codespell~=2.2.6", + "codespell>=2.2.6,<2.4.0", "mypy-extensions~=1.0", "mypy~=1.10", "pre-commit>=3.3.3",