From 4b45122e62a3175a889acb27db8e19fda2556876 Mon Sep 17 00:00:00 2001 From: Facundo Batista Date: Wed, 9 Jul 2025 18:31:23 -0300 Subject: [PATCH] Updated different versions in github action runners. --- .github/workflows/integtests.yaml | 12 ++++++------ .github/workflows/tests.yaml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integtests.yaml b/.github/workflows/integtests.yaml index 0e15961..f89169c 100644 --- a/.github/workflows/integtests.yaml +++ b/.github/workflows/integtests.yaml @@ -44,7 +44,7 @@ jobs: fetch-depth: 0 - name: Install dependencies run: | - yum install --assumeyes python3.12 python-packaging + yum install --assumeyes python3.13 python-packaging - name: Simple fades run run: | cd /fades @@ -53,7 +53,7 @@ jobs: run: | yum install --assumeyes python3.9 cd /fades - python3.12 bin/fades -v --python=python3.9 -d pytest -x pytest -v --integtest-pyversion=3.9 tests/integtest.py + python3.13 bin/fades -v --python=python3.9 -d pytest -x pytest -v --integtest-pyversion=3.9 tests/integtest.py native-windows: strategy: @@ -61,8 +61,8 @@ jobs: # just a selection otherwise it's too much # - latest OS (left here even if it's only one to simplify upgrading later) # - oldest and newest Python - os: [windows-2022] - python-version: [3.8, "3.12"] + os: [windows-2025] + python-version: [3.8, "3.13"] runs-on: ${{ matrix.os }} steps: @@ -97,8 +97,8 @@ jobs: # just a selection otherwise it's too much # - latest OSes # - oldest and newest Python - os: [ubuntu-22.04, macos-12] - python-version: [3.8, "3.12"] + os: [ubuntu-24.04, macos-15] + python-version: [3.8, "3.13"] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index dfb00be..f62c772 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -13,8 +13,8 @@ jobs: run-tests: strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, windows-2019, windows-2022] - python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] + os: [ubuntu-22.04, ubuntu-24.04, macos-14, macos-15, windows-2022, windows-2025] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] runs-on: ${{ matrix.os }} steps: