Skip to content

Commit 0bb3190

Browse files
authored
fix(ci): don't build/test examples on python 3.7 (xmipy requires 3.8+) (#10)
1 parent 1dcb276 commit 0bb3190

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,14 @@ jobs:
147147
key: modflow6-examples-${{ hashFiles('modflow6-examples/data/**') }}
148148

149149
- name: Install extra Python packages
150-
if: steps.cache-examples.outputs.cache-hit != 'true'
150+
if: steps.cache-examples.outputs.cache-hit != 'true' && matrix.python != '3.7'
151151
working-directory: modflow6-examples/etc
152152
run: |
153153
pip install -r requirements.pip.txt
154154
pip install -r requirements.usgs.txt
155155
156156
- name: Build modflow6 example models
157-
if: steps.cache-examples.outputs.cache-hit != 'true'
157+
if: steps.cache-examples.outputs.cache-hit != 'true' && matrix.python != '3.7'
158158
working-directory: modflow6-examples/etc
159159
run: python ci_build_files.py
160160

0 commit comments

Comments
 (0)