Skip to content

Commit a4331fe

Browse files
committed
windows python 3.10 glda=3.4.3
1 parent 75f08c9 commit a4331fe

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/linting_and_testing.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff 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

dependencies.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
numpy
22
scipy
33
geopandas
4-
shapely>=2
4+
shapely>=2.0.2
55
networkx
66
owslib
77
loopprojectfile==0.2.2

0 commit comments

Comments
 (0)