Skip to content

Commit 27158f2

Browse files
Fix empy dep (#213) (#215)
(cherry picked from commit dd51082) Co-authored-by: Pablo Garrido <pablogs9@gmail.com>
1 parent 6464e03 commit 27158f2

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
export DEBIAN_FRONTEND=noninteractive
3434
apt install -y git python3-pip
3535
. $IDF_PATH/export.sh
36-
pip3 install catkin_pkg lark-parser empy colcon-common-extensions
36+
pip3 install catkin_pkg lark-parser colcon-common-extensions
3737
# This line avoids the error when using Python < 3.7 https://importlib-resources.readthedocs.io/en/latest/
3838
pip3 install importlib-resources
3939
# this installs the modules also for global python interpreter, needed for IDF v5
40-
/usr/bin/pip3 install catkin_pkg lark-parser empy colcon-common-extensions importlib-resources
40+
/usr/bin/pip3 install catkin_pkg lark-parser colcon-common-extensions importlib-resources
4141
4242
# This line can be removed when https://github.com/colcon/colcon-python-setup-py/issues/56 is solved
4343
- name: Patch setuptools

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636
export DEBIAN_FRONTEND=noninteractive
3737
apt install -y git python3-pip
3838
. $IDF_PATH/export.sh
39-
pip3 install catkin_pkg lark-parser empy colcon-common-extensions
39+
pip3 install catkin_pkg lark-parser colcon-common-extensions
4040
# This line avoids the error when using Python < 3.7 https://importlib-resources.readthedocs.io/en/latest/
4141
pip3 install importlib-resources
4242
# this installs the modules also for global python interpreter, needed for IDF v5
43-
/usr/bin/pip3 install catkin_pkg lark-parser empy colcon-common-extensions importlib-resources
43+
/usr/bin/pip3 install catkin_pkg lark-parser colcon-common-extensions importlib-resources
4444
4545
# This line can be removed when https://github.com/colcon/colcon-python-setup-py/issues/56 is solved
4646
- name: Patch setuptools

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This component needs `colcon` and other Python 3 packages inside the IDF virtual
1111

1212
```bash
1313
. $IDF_PATH/export.sh
14-
pip3 install catkin_pkg lark-parser empy colcon-common-extensions
14+
pip3 install catkin_pkg lark-parser colcon-common-extensions
1515
```
1616

1717
## Middlewares available

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN mkdir -p /tmp/install_micro_ros_deps_script && mv /install_micro_ros_deps_sc
1919
IDF_EXPORT_QUIET=1 /tmp/install_micro_ros_deps_script/install_micro_ros_deps_script.sh && \
2020
rm -rf /var/lib/apt/lists/*
2121

22-
RUN /usr/bin/pip3 --no-cache-dir install catkin_pkg lark-parser empy colcon-common-extensions importlib-resources
22+
RUN /usr/bin/pip3 --no-cache-dir install catkin_pkg lark-parser colcon-common-extensions importlib-resources
2323
ARG USER_ID=espidf
2424

2525
RUN useradd --create-home --home-dir /home/$USER_ID --shell /bin/bash --user-group --groups adm,sudo $USER_ID && \

docker/install_micro_ros_deps_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ set -eu
55
sudo apt update -q
66
sudo apt install -yq python3-pip
77
source $IDF_PATH/export.sh
8-
pip3 install catkin_pkg lark-parser empy colcon-common-extensions importlib-resources
8+
pip3 install catkin_pkg lark-parser colcon-common-extensions importlib-resources
99

1010
set +u

0 commit comments

Comments
 (0)