Skip to content

Commit 0639fb1

Browse files
committed
Added gdal
1 parent 741ecfe commit 0639fb1

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ jobs:
3131
uses: actions/setup-python@v4
3232
with:
3333
python-version: ${{ matrix.config.py }}
34+
- name: Install GDAL
35+
run: |
36+
python -m pip install --upgrade pip
37+
pip install --no-cache-dir Cython
38+
pip install --find-links=https://girder.github.io/large_image_wheels --no-cache GDAL
39+
- name: Test GDAL installation
40+
run: |
41+
python -c "from osgeo import gdal"
42+
gdalinfo --version
3443
- name: Install dependencies
3544
run: |
3645
python -m pip install --upgrade pip

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ onnxruntime
66
onnx
77
geopandas
88
rasterio
9-
tqdm
10-
gdal
9+
tqdm

0 commit comments

Comments
 (0)