We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 741ecfe commit 0639fb1Copy full SHA for 0639fb1
.github/workflows/build.yml
@@ -31,6 +31,15 @@ jobs:
31
uses: actions/setup-python@v4
32
with:
33
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
41
+ python -c "from osgeo import gdal"
42
+ gdalinfo --version
43
- name: Install dependencies
44
run: |
45
python -m pip install --upgrade pip
requirements.txt
@@ -6,5 +6,4 @@ onnxruntime
6
onnx
7
geopandas
8
rasterio
9
-tqdm
10
-gdal
+tqdm
0 commit comments