Skip to content

Commit

Permalink
docker: clamp empy to version 3
Browse files Browse the repository at this point in the history
API and syntax changes in 4 make CI problematic
  • Loading branch information
peterbarker committed Dec 3, 2023
1 parent d00b1e4 commit aeaac9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile_dev-base
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RUN set -eux; \
\
pip --version

RUN python -m pip install --no-cache-dir -U future lxml pexpect flake8 pycodestyle empy pyelftools tabulate pre-commit junitparser
RUN python -m pip install --no-cache-dir -U future lxml pexpect flake8 pycodestyle "empy>=3,<4" pyelftools tabulate pre-commit junitparser

RUN mkdir -p /__w/ardupilot/ardupilot && git config --global --add safe.directory /__w/ardupilot/ardupilot && git config --system --add safe.directory /__w/ardupilot/ardupilot

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_dev-chibios-py2
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN wget -q https://bootstrap.pypa.io/pip/2.7/get-pip.py && python get-pip.py && rm -f get-pip.py
RUN python -m pip install --no-cache-dir -U future lxml pexpect flake8 pycodestyle empy pyserial
RUN python -m pip install --no-cache-dir -U future lxml pexpect flake8 pycodestyle "empy>=3,<4" pyserial

RUN mkdir -p /__w/ardupilot/ardupilot && git config --global --add safe.directory /__w/ardupilot/ardupilot && git config --system --add safe.directory /__w/ardupilot/ardupilot

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_dev-ros
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ RUN set -eux; \
\
pip --version

RUN python -m pip install --no-cache-dir -U future lxml pexpect flake8 empy pyelftools tabulate pymavlink pre-commit junitparser
RUN python -m pip install --no-cache-dir -U future lxml pexpect flake8 "empy>=3,<4" pyelftools tabulate pymavlink pre-commit junitparser

FROM eclipse-temurin:19-jdk-jammy as dds-gen-builder

Expand Down

0 comments on commit aeaac9b

Please sign in to comment.