From cd46ab0a931679838debe856425a0b05567d7e80 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:47:32 +0200 Subject: [PATCH] fix empy (#257) (#258) (cherry picked from commit d4d953fbc5229e2db6946b9343d587c777cc5291) Co-authored-by: Pablo Garrido --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0ad7a12..30866729 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,11 +30,11 @@ jobs: export DEBIAN_FRONTEND=noninteractive apt install -y git python3-pip . $IDF_PATH/export.sh - pip3 install catkin_pkg lark-parser colcon-common-extensions + pip3 install catkin_pkg lark-parser colcon-common-extensions empy==3.3.4 # This line avoids the error when using Python < 3.7 https://importlib-resources.readthedocs.io/en/latest/ pip3 install importlib-resources # this installs the modules also for global python interpreter, needed for IDF v5 - /usr/bin/pip3 install catkin_pkg lark-parser colcon-common-extensions importlib-resources + /usr/bin/pip3 install catkin_pkg lark-parser colcon-common-extensions empy==3.3.4 importlib-resources # This line can be removed when https://github.com/colcon/colcon-python-setup-py/issues/56 is solved - name: Patch setuptools