From c3509e62968cf7760ababea211c49446bba948d5 Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Thu, 12 Aug 2021 16:20:23 +0200 Subject: [PATCH] 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. --- utils/bootstrap.py | 2 +- utils/holly/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/bootstrap.py b/utils/bootstrap.py index 08c0ae5..e01994a 100755 --- a/utils/bootstrap.py +++ b/utils/bootstrap.py @@ -63,7 +63,7 @@ dependencies = { } }, } -pip_dependencies = ['pandas'] +pip_dependencies = [] # yapf: enable diff --git a/utils/holly/Dockerfile b/utils/holly/Dockerfile index c44582c..5e90d3c 100644 --- a/utils/holly/Dockerfile +++ b/utils/holly/Dockerfile @@ -2,7 +2,7 @@ FROM gcc:11.1 RUN apt-get clean && \ apt-get update -qq -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 ADD utils/bootstrap.py bootstrap.py RUN gcc --version