From 60a9f4b520df004d7a0eb0d03423cedc95106345 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Oct 2022 10:18:33 +0000 Subject: [PATCH 1/2] Bump codespell from 2.2.1 to 2.2.2 Bumps [codespell](https://github.com/codespell-project/codespell) from 2.2.1 to 2.2.2. - [Release notes](https://github.com/codespell-project/codespell/releases) - [Commits](https://github.com/codespell-project/codespell/compare/v2.2.1...v2.2.2) --- updated-dependencies: - dependency-name: codespell dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- poetry.lock | 13 +++++++------ pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) 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" From 53a1106ba208dc0a3a3fe023b7b84a12c1d6651e Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 18 Oct 2022 05:02:34 -0700 Subject: [PATCH 2/2] Update codespell version in "Spell Check" template installation docs codespell@2.2.2 is now the version used as standard in all Arduino Tooling projects. --- 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 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.