Skip to content

Commit

Permalink
Add gdal to macos and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiusheng Wu committed Oct 30, 2024
1 parent b27942e commit 1f5dff7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,14 @@ jobs:
- name: Set up Python ${{ matrix.config.py }}
run: uv python install ${{ matrix.config.py }}

- name: Install optional dependencies
run: |
uv venv
uv pip install --find-links https://girder.github.io/large_image_wheels gdal pyproj
uv pip install pytest
- name: Install dependencies
run: uv sync --python ${{ matrix.config.py }}
run: uv pip install -e . --python ${{ matrix.config.py }}

- name: Test import
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}

- name: Install optional dependencies
run: |
uv venv
uv pip install --find-links https://girder.github.io/large_image_wheels gdal pyproj
uv pip install pytest
- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }}
run: uv pip install -e . --python ${{ matrix.python-version }}

- name: Test import
run: |
Expand Down

0 comments on commit 1f5dff7

Please sign in to comment.