From c63b1811add6669c1569f9637943908293734256 Mon Sep 17 00:00:00 2001 From: karen-an <108370177+karen-an@users.noreply.github.com> Date: Wed, 15 Jan 2025 15:27:39 -0800 Subject: [PATCH] Update python-crop-image.yml Explicitly activate conda env --- .github/workflows/python-crop-image.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-crop-image.yml b/.github/workflows/python-crop-image.yml index a337b35..95df8dd 100644 --- a/.github/workflows/python-crop-image.yml +++ b/.github/workflows/python-crop-image.yml @@ -45,7 +45,9 @@ jobs: # pip install pygdal==$(gdal-config --version).* --global-option=build_ext --global-option="-I$(gdal-config --cflags | sed -e 's/-I//g')" --global-option="-L$(gdal-config --libs | sed -e 's/-L//g')" # pip install -r requirements.txt - name: Run Jupyter notebook - run: jupyter execute crop_image.pynb + run: + source activate classification + jupyter execute crop_image.pynb shell: bash # - name: Lint with flake8 # run: |