diff --git a/poetry.lock b/poetry.lock index 55e0bf64..70170835 100644 --- a/poetry.lock +++ b/poetry.lock @@ -62,13 +62,13 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "codespell" -version = "2.2.6" +version = "2.3.0" description = "Codespell" optional = false python-versions = ">=3.8" files = [ - {file = "codespell-2.2.6-py3-none-any.whl", hash = "sha256:9ee9a3e5df0990604013ac2a9f22fa8e57669c827124a2e961fe8a1da4cacc07"}, - {file = "codespell-2.2.6.tar.gz", hash = "sha256:a8c65d8eb3faa03deabab6b3bbe798bea72e1799c7e9e955d57eca4096abcff9"}, + {file = "codespell-2.3.0-py3-none-any.whl", hash = "sha256:a9c7cef2501c9cfede2110fd6d4e5e62296920efe9abfb84648df866e47f58d1"}, + {file = "codespell-2.3.0.tar.gz", hash = "sha256:360c7d10f75e65f67bad720af7007e1060a5d395670ec11a7ed1fed9dd17471f"}, ] [package.extras] @@ -385,4 +385,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "5e3180847145509783d10b50652945ff83213800e432c4636ca6354a1301e5d9" +content-hash = "297c732186dbdacd0adcab4a313d6daf85c5721c8b6aa50dae054d59982225cc" diff --git a/pyproject.toml b/pyproject.toml index 81278dbd..29ae3705 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ python = "^3.9" [tool.poetry.dev-dependencies] yamllint = "^v1.35.1" -codespell = "^2.2.6" +codespell = "^2.3.0" black = "^24.4" flake8 = "^7.0.0" pep8-naming = "^0.14.1" diff --git a/workflow-templates/spell-check-task.md b/workflow-templates/spell-check-task.md index e3193b55..f665519b 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.5" +poetry init --python="^3.9" --dev-dependency="codespell@^2.3.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "codespell@^2.2.5" +poetry add --dev "codespell@^2.3.0" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.