From 6548315be93e9f7e85b0c1d38966a410a0a727ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 11:59:36 +0000 Subject: [PATCH 1/2] Bump codespell from 2.2.6 to 2.3.0 Bumps [codespell](https://github.com/codespell-project/codespell) from 2.2.6 to 2.3.0. - [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:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- poetry.lock | 8 ++++---- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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" From 969cb19892233a44aa490d3ad799709f8bd6059e Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 5 Jun 2024 05:04:17 -0700 Subject: [PATCH 2/2] Update `codespell` version in template installation docs This is now the version used as standard in all Arduino Tooling projects, which the "template" is intended to be used with. --- workflow-templates/spell-check-task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.