File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,19 @@ jobs:
3737 conda-remove-defaults : " true"
3838
3939
40- - name : Install dependencies
40+ - name : Install dependencies for windows python 3.10
41+ if : ${{ matrix.os == 'windows-latest' && matrix.python-version == '3.10' }}
42+ run : |
43+ conda run -n test conda info
44+ conda run -n test conda install -c loop3d -c conda-forge "gdal=3.4.3" python=${{ matrix.python-version }} -y
45+ conda run -n test conda install -c loop3d -c conda-forge --file dependencies.txt python=${{ matrix.python-version }} -y
46+ conda run -n test conda install pytest python=${{ matrix.python-version }} -y
47+
48+ - name : Install dependencies for other environments
49+ if : ${{ matrix.os != 'windows-latest' || matrix.python-version != '3.10' }}
4150 run : |
4251 conda run -n test conda info
43- conda run -n test conda install -c loop3d -c conda-forge " gdal>=3.6.2" python=${{ matrix.python-version }} -y
52+ conda run -n test conda install -c loop3d -c conda-forge gdal python=${{ matrix.python-version }} -y
4453 conda run -n test conda install -c loop3d -c conda-forge --file dependencies.txt python=${{ matrix.python-version }} -y
4554 conda run -n test conda install pytest python=${{ matrix.python-version }} -y
4655
Original file line number Diff line number Diff line change 11numpy
22scipy
33geopandas
4- shapely>=2
4+ shapely>=2.0.2
55networkx
66owslib
77loopprojectfile==0.2.2
You can’t perform that action at this time.
0 commit comments