From 4ef5eed50c6c3144523e807f90d2c8f48094ac30 Mon Sep 17 00:00:00 2001 From: Rodrigo Tobar Date: Mon, 8 Jul 2024 21:43:45 +0800 Subject: [PATCH] Use python 3.12 everywhere Also specify a python version in build-docs, where we weren't specifying one. Signed-off-by: Rodrigo Tobar --- .github/workflows/build-and-test.yaml | 4 ++-- .github/workflows/build-docs.yml | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index b4b19000..e978bef7 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -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 @@ -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 diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 56a099e0..8599a58e 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -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