From d0fd920dc31c1ce80ced1701b7780b619808654a Mon Sep 17 00:00:00 2001 From: Nathan Keim Date: Fri, 24 May 2024 16:24:15 -0400 Subject: [PATCH] BLD: Switch CI to conda activate --- .github/workflows/test-conda.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-conda.yml b/.github/workflows/test-conda.yml index 59753818..51295f27 100644 --- a/.github/workflows/test-conda.yml +++ b/.github/workflows/test-conda.yml @@ -25,7 +25,7 @@ jobs: shell: bash run: | conda create --name test python=${{ matrix.python }} pytest numpy scipy matplotlib pandas pytables numba scikit-learn pyyaml looseversion - source activate test + conda activate test python -V conda info conda list @@ -33,5 +33,5 @@ jobs: - name: Run tests shell: bash run: | - source activate test + conda activate test pytest trackpy