From 74bffe816d628053c073ca0c7bdf0a8276deabdb Mon Sep 17 00:00:00 2001 From: Luca Foppiano Date: Wed, 1 Jan 2025 19:04:37 +0900 Subject: [PATCH] Fix automation (#84) remove python 3.7 which is no longer supported by the latest ubuntu 24 version --- .github/workflows/ci-build.yml | 3 ++- .github/workflows/ci-release.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index bc0862a..5c49c0c 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -11,7 +11,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.7, 3.8, 3.9, '3.10', '3.11', '3.12' ] + python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ] + fail-fast: false steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index e25ac21..a4e05c4 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.9" cache: 'pip'