Skip to content

Commit

Permalink
Use python 3.12 everywhere
Browse files Browse the repository at this point in the history
Also specify a python version in build-docs, where we weren't specifying
one.

Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar committed Jul 8, 2024
1 parent a3555b0 commit 4ef5eed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"

- name: Install Python dependencies
run: pip install matplotlib h5py scipy
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"

- name: Install Python dependencies
run: pip install h5py
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r doc/requirements.txt
- name: Build documentation
Expand Down

0 comments on commit 4ef5eed

Please sign in to comment.