diff --git a/poetry.lock b/poetry.lock index 68ee1490..c1f7ccbb 100644 --- a/poetry.lock +++ b/poetry.lock @@ -47,15 +47,16 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "codespell" -version = "2.2.1" +version = "2.2.2" description = "Codespell" category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.extras] -dev = ["check-manifest", "flake8", "pytest", "pytest-cov", "pytest-dependency"] +dev = ["check-manifest", "flake8", "pytest", "pytest-cov", "pytest-dependency", "tomli"] hard-encoding-detection = ["chardet"] +toml = ["tomli"] [[package]] name = "colorama" @@ -290,7 +291,7 @@ setuptools = "*" [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "025630766c3eedc59a2b3269d4619426f1c01a6c206a461452bdefb15bd06f98" +content-hash = "02b7221d5908b088c3f57f265d402e4839c2ccaa2ff3a6a87a5f86e0c1215913" [metadata.files] attrs = [ @@ -325,8 +326,8 @@ click = [ {file = "click-8.0.1.tar.gz", hash = "sha256:8c04c11192119b1ef78ea049e0a6f0463e4c48ef00a30160c704337586f3ad7a"}, ] codespell = [ - {file = "codespell-2.2.1-py3-none-any.whl", hash = "sha256:0c53a70f466952706407383d87142a78f319a0e18602802c4aadd3d93158bfc6"}, - {file = "codespell-2.2.1.tar.gz", hash = "sha256:569b67e5e5c3ade02a1e23f6bbc56c64b608a3ab48ddd943ece0a03e6c346ed1"}, + {file = "codespell-2.2.2-py3-none-any.whl", hash = "sha256:87dfcd9bdc9b3cb8b067b37f0af22044d7a84e28174adfc8eaa203056b7f9ecc"}, + {file = "codespell-2.2.2.tar.gz", hash = "sha256:c4d00c02b5a2a55661f00d5b4b3b5a710fa803ced9a9d7e45438268b099c319c"}, ] colorama = [ {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, diff --git a/pyproject.toml b/pyproject.toml index b11d0bd2..2cff9660 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ python = "^3.9" [tool.poetry.dev-dependencies] yamllint = "^v1.28.0" -codespell = "^2.2.1" +codespell = "^2.2.2" black = "^22.10" flake8 = "^5.0.4" pep8-naming = "^0.13.2" diff --git a/workflow-templates/spell-check-task.md b/workflow-templates/spell-check-task.md index e5ee7905..dd5befbe 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.1" +poetry init --python="^3.9" --dev-dependency="codespell@^2.2.2" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "codespell@^2.2.1" +poetry add --dev "codespell@^2.2.2" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.