From 7529b14b02e90032880eb7cf15538bb09c35c27c Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Mon, 4 Sep 2023 16:32:53 -0400 Subject: [PATCH] Pin GDAL version --- .github/workflows/docs-build.yml | 2 +- .github/workflows/docs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index 48b87f114c..4a66f75c61 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -14,7 +14,7 @@ jobs: auto-activate-base: true python-version: "3.10" - name: Install GDAL - run: conda install -c conda-forge gdal pyproj --yes + run: conda install -c conda-forge gdal=3.4.0 pyproj --yes - name: Test GDAL installation run: | python -c "from osgeo import gdal" diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 55cdfa01c5..3ae12dd13b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,7 +16,7 @@ jobs: - name: Install GDAL run: | conda install mamba -n base -c conda-forge --yes - mamba install -c conda-forge gdal pyproj --yes + mamba install -c conda-forge gdal=3.4.0 pyproj --yes - name: Test GDAL installation run: | python -c "from osgeo import gdal"