From 3b45a2f11284f0948bc46e796168727b170f6e1e Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Sun, 22 Sep 2024 17:25:14 -0400 Subject: [PATCH] Fix gdal error --- .github/workflows/macos.yml | 7 ------- .github/workflows/py313.yml | 12 ------------ .github/workflows/windows.yml | 12 ------------ 3 files changed, 31 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 566150b673..4973a833b5 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -33,13 +33,6 @@ jobs: - name: Install dependencies run: uv sync --python ${{ matrix.config.py }} - - name: Install optional dependencies - run: | - uv pip install --find-links https://girder.github.io/large_image_wheels gdal pyproj - uv pip install -r requirements_dev.txt - - name: Test import run: | uv run python -c "import leafmap; print('leafmap import successful')" - uv run python -c "from osgeo import gdal; print('gdal import successful')" - uv run gdalinfo --version diff --git a/.github/workflows/py313.yml b/.github/workflows/py313.yml index 9ff775f104..7c1c45ccb1 100644 --- a/.github/workflows/py313.yml +++ b/.github/workflows/py313.yml @@ -41,18 +41,6 @@ jobs: - name: Install dependencies run: uv sync --python ${{ matrix.python-version }} - - name: Install optional dependencies - run: | - uv pip install --find-links https://girder.github.io/large_image_wheels pyproj - uv pip install pytest - uv pip install -r requirements_dev.txt - - name: Test import run: | uv run python -c "import leafmap; print('leafmap import successful')" - # uv run python -c "from osgeo import gdal; print('gdal import successful')" - # uv run gdalinfo --version - - # - name: Running pytest - # run: | - # uv run pytest . --verbose diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bc64b01dbc..2fcacfa67d 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -38,18 +38,6 @@ jobs: - name: Install dependencies run: uv sync --python ${{ matrix.python-version }} - - name: Install optional dependencies - run: | - uv pip install --find-links https://girder.github.io/large_image_wheels gdal pyproj - uv pip install pytest - uv pip install -r requirements_dev.txt - - name: Test import run: | uv run python -c "import leafmap; print('leafmap import successful')" - uv run python -c "from osgeo import gdal; print('gdal import successful')" - uv run gdalinfo --version - - - name: Running pytest - run: | - uv run pytest . --verbose