From c816fb3af973ab6e569b5bf9efc20943ea5ac3ed Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Fri, 29 Nov 2024 17:10:16 +0100 Subject: [PATCH] ci: go back to the latest version of each OS for building the Python library The issue mentioned in #255 is not related to the OS used. Also stop building the Python library with Python 3.8 and 3.9 which are pretty old anyways. --- .github/workflows/release.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0e022e0b..a5e4c983 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -97,9 +97,7 @@ jobs: fail-fast: false matrix: python-version: - - cp39 - - pp38 - - pp39 + - cp310 - pp310 build: - linux @@ -107,14 +105,14 @@ jobs: - windows include: - build: linux - os: ubuntu-22.04 + os: ubuntu-latest - build: macos - os: macos-13 + os: macos-latest arch: 'arm64 x86_64' - build: windows - os: windows-2022 + os: windows-latest arch: 'x86 AMD64' steps: