From 3588267e67efdf0ff9800087b9d249df0abbafe1 Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Thu, 23 Nov 2023 11:08:15 +0100 Subject: [PATCH] fix(ci): bump astyle version to v1.0.5 in .pre-commit-config.yaml pyyaml have problem with newer cython(3.0), this was fixed in pyyaml 6.0.1, which requires cython<3.0. The pyyaml dependency in astyle was fixed in v1.0.5, but the pre-commit config is still useing v1.0.2. As a result the pre-commit hooks installation of astyle can fail on pyyaml. Fix this by bumping the astyle version for pre-commit. Signed-off-by: Frantisek Hrbata --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ff91755bad..157a3f5081 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -205,7 +205,7 @@ repos: - id: conventional-precommit-linter stages: [commit-msg] - repo: https://github.com/espressif/astyle_py.git - rev: v1.0.2 + rev: v1.0.5 hooks: - id: astyle_py # If you are modifying astyle version, update tools/format.sh as well