Skip to content

Commit

Permalink
spicy: Do not install pre-commit (#12344)
Browse files Browse the repository at this point in the history
We do not need pre-commit for fuzzing. Installing it via pip raises
pip._vendor.pep517.wrappers.BackendUnavailable due to some dependency.
Drop it, as it's not needed.

I don't think we need btest either unless for installing the packages
via zkg, so keeping that one for now.
  • Loading branch information
awelzel authored Aug 14, 2024
1 parent f0c125b commit c4fa2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/spicy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN apt-get update \
python3-sphinx-rtd-theme \
python3-setuptools \
python3-wheel doxygen \
&& pip3 install --no-cache-dir "btest>=0.66" pre-commit \
&& pip3 install --no-cache-dir "btest>=0.66" \
# Install a recent CMake.
&& mkdir -p /opt/cmake \
&& curl -L https://github.com/Kitware/CMake/releases/download/v3.29.2/cmake-3.29.2-linux-x86_64.tar.gz | tar xzvf - -C /opt/cmake --strip-components 1 \
Expand Down

0 comments on commit c4fa2d4

Please sign in to comment.