From d22c67f95f07509c2e8b9f4f4bf625108e09731d Mon Sep 17 00:00:00 2001 From: Dani Sim Date: Thu, 26 Sep 2019 13:24:15 -0400 Subject: [PATCH] wip. --- .github/workflows/ci-workflow.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-workflow.yaml b/.github/workflows/ci-workflow.yaml index 3a6540c..34df08e 100644 --- a/.github/workflows/ci-workflow.yaml +++ b/.github/workflows/ci-workflow.yaml @@ -57,13 +57,13 @@ jobs: - name: Setup conda run: | - export PATH="$HOME/miniconda/bin:$PATH" + export PATH="usr/share/miniconda/bin:$PATH" conda config --set always_yes yes --set changeps1 no conda update -q conda - name: Install dependencies run: | - conda create -p $HOME/miniconda/envs/testenv --yes -c conda-forge pip python=${{ matrix.python }} numpy=${{ matrix.numpy }} pandas=${{ matrix.pandas }} scipy=${{ matrix.scipy }} libgfortran=${{ matrix.libgfortran }} + conda create -n testenv --yes -c conda-forge pip python=${{ matrix.python }} numpy=${{ matrix.numpy }} pandas=${{ matrix.pandas }} scipy=${{ matrix.scipy }} libgfortran=${{ matrix.libgfortran }} source activate testenv pip install -e .[dev] flake8 .