diff --git a/poetry.lock b/poetry.lock index 94d3e57f..39f5d2fe 100644 --- a/poetry.lock +++ b/poetry.lock @@ -65,17 +65,17 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "codespell" -version = "2.2.4" +version = "2.2.5" description = "Codespell" optional = false python-versions = ">=3.7" files = [ - {file = "codespell-2.2.4-py3-none-any.whl", hash = "sha256:7d984b8130108e6f82524b7d09f8b7bf2fb1e398c5d4b37d9e2bd310145b3e29"}, - {file = "codespell-2.2.4.tar.gz", hash = "sha256:0b4620473c257d9cde1ff8998b26b2bb209a35c2b7489f5dc3436024298ce83a"}, + {file = "codespell-2.2.5-py3-none-any.whl", hash = "sha256:efa037f54b73c84f7bd14ce8e853d5f822cdd6386ef0ff32e957a3919435b9ec"}, + {file = "codespell-2.2.5.tar.gz", hash = "sha256:6d9faddf6eedb692bf80c9a94ec13ab4f5fb585aabae5f3750727148d7b5be56"}, ] [package.extras] -dev = ["Pygments", "build", "chardet", "flake8", "flake8-pyproject", "pytest", "pytest-cov", "pytest-dependency", "tomli"] +dev = ["Pygments", "build", "chardet", "pytest", "pytest-cov", "pytest-dependency", "ruff", "tomli"] hard-encoding-detection = ["chardet"] toml = ["tomli"] types = ["chardet (>=5.1.0)", "mypy", "pytest", "pytest-cov", "pytest-dependency"] @@ -384,4 +384,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "2e1b278799388d7a0658d3d7125d4d15c512ab56249fd35c7fd16059b991868e" +content-hash = "907f23b90e0d82cd6eac5dc4df4528fb06a3b1f81ec21d259e212defa27f9f3e" diff --git a/pyproject.toml b/pyproject.toml index 1dc37e7b..ad8ba7d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ python = "^3.9" [tool.poetry.dev-dependencies] yamllint = "^v1.32.0" -codespell = "^2.2.4" +codespell = "^2.2.5" black = "^23.3" flake8 = "^6.0.0" pep8-naming = "^0.13.3" diff --git a/workflow-templates/spell-check-task.md b/workflow-templates/spell-check-task.md index dd2a0eb5..e3193b55 100644 --- a/workflow-templates/spell-check-task.md +++ b/workflow-templates/spell-check-task.md @@ -29,14 +29,14 @@ https://python-poetry.org/docs/#installation If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands: ``` -poetry init --python="^3.9" --dev-dependency="codespell@^2.2.4" +poetry init --python="^3.9" --dev-dependency="codespell@^2.2.5" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "codespell@^2.2.4" +poetry add --dev "codespell@^2.2.5" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.