|
29 | 29 | - name: Setup Python
|
30 | 30 | uses: actions/setup-python@v5
|
31 | 31 | with:
|
32 |
| - python-version: 3.9 |
| 32 | + python-version: '3.10' |
33 | 33 |
|
34 | 34 | - name: Install Python packages
|
35 | 35 | working-directory: etc
|
|
67 | 67 | - name: Setup Python
|
68 | 68 | uses: actions/setup-python@v5
|
69 | 69 | with:
|
70 |
| - python-version: 3.9 |
| 70 | + python-version: '3.10' |
71 | 71 |
|
72 | 72 | - name: Install Python packages
|
73 | 73 | working-directory: modflow6-examples/etc
|
@@ -119,7 +119,7 @@ jobs:
|
119 | 119 | strategy:
|
120 | 120 | fail-fast: false
|
121 | 121 | matrix:
|
122 |
| - python: [3.9, "3.10", "3.11", "3.12"] |
| 122 | + python: ["3.10", "3.11", "3.12", "3.13"] |
123 | 123 | steps:
|
124 | 124 | - name: Checkout MODFLOW 6 examples
|
125 | 125 | uses: actions/checkout@v4
|
@@ -186,21 +186,21 @@ jobs:
|
186 | 186 |
|
187 | 187 | - name: Run postprocessing
|
188 | 188 | working-directory: modflow6-examples/scripts
|
189 |
| - if: matrix.python == '3.9' |
| 189 | + if: matrix.python == '3.10' |
190 | 190 | run: python process-scripts.py
|
191 | 191 |
|
192 | 192 | - name: Build PDF document
|
193 | 193 | working-directory: modflow6-examples/doc
|
194 |
| - if: matrix.python == '3.9' |
| 194 | + if: matrix.python == '3.10' |
195 | 195 | run: ./build-pdf.sh
|
196 | 196 |
|
197 | 197 | - name: Move PDF document
|
198 | 198 | working-directory: modflow6-examples
|
199 |
| - if: matrix.python == '3.9' |
| 199 | + if: matrix.python == '3.10' |
200 | 200 | run: mv doc/${{ env.DISTNAME }}.pdf ${{ env.DISTNAME }}.pdf
|
201 | 201 |
|
202 | 202 | - name: Upload PDF document
|
203 |
| - if: matrix.python == '3.9' |
| 203 | + if: matrix.python == '3.10' |
204 | 204 | uses: actions/upload-artifact@v4
|
205 | 205 | with:
|
206 | 206 | name: ${{ env.DISTNAME}}.pdf
|
|
0 commit comments