From e16fce6fffa249e02145f96221b2e6cea6e55700 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 24 Sep 2023 23:39:43 -0700 Subject: [PATCH] Update `black` 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/check-python-task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow-templates/check-python-task.md b/workflow-templates/check-python-task.md index 5482d298..704da3e3 100644 --- a/workflow-templates/check-python-task.md +++ b/workflow-templates/check-python-task.md @@ -31,14 +31,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="black@^23.7.0" --dev-dependency="flake8@^6.1.0" --dev-dependency="pep8-naming@^0.13.3" +poetry init --python="^3.9" --dev-dependency="black@^23.9.1" --dev-dependency="flake8@^6.1.0" --dev-dependency="pep8-naming@^0.13.3" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "black@^23.7.0" "flake8@^6.1.0" "pep8-naming@^0.13.3" +poetry add --dev "black@^23.9.1" "flake8@^6.1.0" "pep8-naming@^0.13.3" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.