Skip to content

Commit 8aea678

Browse files
authored
GH actions: update Python version 3.12 -> 3.13 (#423)
* GH actions: do not install scipy when implicit solution is off
1 parent 2e33ba1 commit 8aea678

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/cmd_template.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
python-version:
1717
- "3.9"
18-
- "3.12"
18+
- "3.13"
1919

2020
runs-on: ubuntu-24.04
2121

.github/workflows/grass_provider.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Python dependencies
2424
run: |
2525
pip3 install --break-system-packages -r .github/workflows/requirements.txt
26-
pip3 install --break-system-packages -r .github/workflows/requirements3.12.txt
26+
pip3 install --break-system-packages -r .github/workflows/requirements3.13.txt
2727
2828
- name: Install smoderp2d
2929
run: |
@@ -47,7 +47,7 @@ jobs:
4747
- name: Install Python dependencies
4848
run: |
4949
pip3 install --break-system-packages -r .github/workflows/requirements.txt
50-
pip3 install --break-system-packages -r .github/workflows/requirements3.12.txt
50+
pip3 install --break-system-packages -r .github/workflows/requirements3.13.txt
5151
5252
- name: Install smoderp2d
5353
run: |
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pytest==8.2.2
22
numpy==1.26.4
33
matplotlib==3.9.0
4-
scipy==1.13.1
4+
# scipy==1.13.1

.github/workflows/requirements3.9.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pytest==7.2.2
22
numpy==1.22.0
33
matplotlib==3.5.3
4-
scipy==1.7.3
4+
# scipy==1.7.3

0 commit comments

Comments
 (0)