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