From 30124b47e170666d3a7d3869bd79b710192c42f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Jun 2023 10:59:12 +0000 Subject: [PATCH 1/2] Bump codespell from 2.2.4 to 2.2.5 Bumps [codespell](https://github.com/codespell-project/codespell) from 2.2.4 to 2.2.5. - [Release notes](https://github.com/codespell-project/codespell/releases) - [Commits](https://github.com/codespell-project/codespell/compare/v2.2.4...v2.2.5) --- updated-dependencies: - dependency-name: codespell dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- poetry.lock | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) 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" From b21ecf5212aee0733d3dbb1367e30bfd61070cbd Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 15 Jun 2023 08:56:12 -0700 Subject: [PATCH 2/2] Update `codespell` version in "Spell Check" 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 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.