From a468e6909fff82a9c2e3afd03f84e5fba699918a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Est=C3=A8ve?= Date: Wed, 29 Aug 2018 23:53:47 +0200 Subject: [PATCH] Use released version of dask and distributed in CI --- ci/none.sh | 2 -- ci/pbs/Dockerfile | 2 -- ci/slurm/Dockerfile | 2 -- 3 files changed, 6 deletions(-) diff --git a/ci/none.sh b/ci/none.sh index fb1f9647..58e006bc 100644 --- a/ci/none.sh +++ b/ci/none.sh @@ -5,8 +5,6 @@ function jobqueue_before_install { ./ci/conda_setup.sh export PATH="$HOME/miniconda/bin:$PATH" conda install --yes -c conda-forge python=$TRAVIS_PYTHON_VERSION dask distributed flake8 pytest docrep - pip install --no-cache-dir git+https://github.com/dask/dask.git --upgrade --no-deps - pip install --no-cache-dir git+https://github.com/dask/distributed.git --upgrade --no-deps } function jobqueue_install { diff --git a/ci/pbs/Dockerfile b/ci/pbs/Dockerfile index ddcbd474..e90e18f8 100644 --- a/ci/pbs/Dockerfile +++ b/ci/pbs/Dockerfile @@ -31,8 +31,6 @@ RUN curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-L /opt/anaconda/bin/conda clean -tipy && \ rm -f miniconda.sh RUN conda install --yes -c conda-forge python=3.6 dask distributed flake8 pytest docrep -RUN pip install --no-cache-dir git+https://github.com/dask/dask.git --upgrade --no-deps -RUN pip install --no-cache-dir git+https://github.com/dask/distributed.git --upgrade --no-deps # Copy entrypoint and other needed scripts COPY ./*.sh / diff --git a/ci/slurm/Dockerfile b/ci/slurm/Dockerfile index be0f22d0..814cf792 100644 --- a/ci/slurm/Dockerfile +++ b/ci/slurm/Dockerfile @@ -6,8 +6,6 @@ RUN curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-L rm -f miniconda.sh ENV PATH /opt/anaconda/bin:$PATH RUN conda install --yes -c conda-forge python=3.6 dask distributed flake8 pytest docrep -RUN pip install --no-cache-dir git+https://github.com/dask/dask.git --upgrade --no-deps -RUN pip install --no-cache-dir git+https://github.com/dask/distributed.git --upgrade --no-deps ENV LC_ALL en_US.UTF-8