Skip to content
Snippets Groups Projects
Commit c28dcc14 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Revert specifying pandas version and clean up installation for 37 recipe

parent 5377bfaa
No related branches found
No related tags found
No related merge requests found
Pipeline #47940 passed
......@@ -20,15 +20,18 @@ ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \
echo "conda activate base" >> ~/.bashrc
# Update pip and setuptools
RUN pip install --upgrade pip \
&& LC_ALL=C pip install --upgrade setuptools
# Install conda-installable programs
RUN conda install -y numpy scipy matplotlib pandas==0.23
RUN conda install -y numpy scipy matplotlib pandas
# Install conda-forge-installable programs
RUN conda install -c conda-forge deepdish
# Install requirements
RUN pip install --upgrade pip \
&& pip install --upgrade setuptools \
&& pip install future \
RUN pip install future \
pycondor>=0.5 \
configargparse \
flake8 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment