From afc0592961ce805a120d9b1242eb86d234f3e4ac Mon Sep 17 00:00:00 2001 From: "Brendan C. Ward" Date: Mon, 16 May 2022 09:22:13 -0700 Subject: [PATCH 1/2] Add --no-use-pep517 to get around pip oldest-supported-numpy issue --- .github/workflows/docker-gdal.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-gdal.yml b/.github/workflows/docker-gdal.yml index 850f4bce..14233834 100644 --- a/.github/workflows/docker-gdal.yml +++ b/.github/workflows/docker-gdal.yml @@ -34,7 +34,7 @@ jobs: run: | python3 -m pip install --no-cache-dir -U pip wheel python3 -m pip install --no-cache-dir cython~=0.29 - python3 -m pip install --no-cache-dir --no-build-isolation -e .[dev,test,geopandas] + python3 -m pip install --no-cache-dir --no-build-isolation --no-use-pep517 -e .[dev,test,geopandas] - name: Test with pytest run: | From ae255db5f9a18507fdc81c12434843ab892b8eec Mon Sep 17 00:00:00 2001 From: "Brendan C. Ward" Date: Mon, 16 May 2022 10:42:18 -0700 Subject: [PATCH 2/2] remove --no-build-isolation and use default pip install for docker gdal test --- .github/workflows/docker-gdal.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker-gdal.yml b/.github/workflows/docker-gdal.yml index 14233834..c18dded3 100644 --- a/.github/workflows/docker-gdal.yml +++ b/.github/workflows/docker-gdal.yml @@ -33,8 +33,7 @@ jobs: - name: Install Python Dependencies run: | python3 -m pip install --no-cache-dir -U pip wheel - python3 -m pip install --no-cache-dir cython~=0.29 - python3 -m pip install --no-cache-dir --no-build-isolation --no-use-pep517 -e .[dev,test,geopandas] + python3 -m pip install --no-cache-dir -e .[dev,test,geopandas] - name: Test with pytest run: |