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
parent
5f643126ba
commit
c3509e6296
|
|
@ -63,7 +63,7 @@ dependencies = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
pip_dependencies = ['pandas']
|
pip_dependencies = []
|
||||||
# yapf: enable
|
# yapf: enable
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue