Remove pandas from bootstrap.py and as docker dependency

We'll not depend on pandas for normal builds, skipping
test_motion_ramp.py if not installed.
pull/87/head
Yuri D'Elia 2021-08-12 16:20:23 +02:00 committed by DRracer
parent 5f643126ba
commit c3509e6296
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ dependencies = {
} }
}, },
} }
pip_dependencies = ['pandas'] pip_dependencies = []
# yapf: enable # yapf: enable

View File

@ -2,7 +2,7 @@ FROM gcc:11.1
RUN apt-get clean && \ RUN apt-get clean && \
apt-get update -qq -y && \ apt-get update -qq -y && \
apt-get install curl python3 python3-pip libncurses5 -y apt-get install curl python3 python3-pip libncurses5 -y
RUN pip3 install pre-commit ecdsa RUN pip3 install pre-commit ecdsa pandas
WORKDIR /work WORKDIR /work
ADD utils/bootstrap.py bootstrap.py ADD utils/bootstrap.py bootstrap.py
RUN gcc --version RUN gcc --version