From 443f416bdbb3fa980f46514355c8c26d307a76e0 Mon Sep 17 00:00:00 2001 From: w-bonelli Date: Tue, 8 Nov 2022 09:16:25 -0500 Subject: [PATCH] fix(ci): don't build/test examples on python 3.7 (xmipy requires 3.8+) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 987f1d1d..85e2a77a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,14 +147,14 @@ jobs: key: modflow6-examples-${{ hashFiles('modflow6-examples/data/**') }} - name: Install extra Python packages - if: steps.cache-examples.outputs.cache-hit != 'true' + if: steps.cache-examples.outputs.cache-hit != 'true' && matrix.python != '3.7' working-directory: modflow6-examples/etc run: | pip install -r requirements.pip.txt pip install -r requirements.usgs.txt - name: Build modflow6 example models - if: steps.cache-examples.outputs.cache-hit != 'true' + if: steps.cache-examples.outputs.cache-hit != 'true' && matrix.python != '3.7' working-directory: modflow6-examples/etc run: python ci_build_files.py