From 2827254572c8880ff0727a758c13ac88cf5b328b Mon Sep 17 00:00:00 2001 From: yorickdowne <71337066+yorickdowne@users.noreply.github.com> Date: Tue, 27 Aug 2024 14:50:10 -0400 Subject: [PATCH] Python 3.13 (#97) * Add Python 3.13 CI * rc1 for now, back this out again later --- .github/workflows/build.yml | 4 ++-- .github/workflows/runner.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 42276b10..33b71f27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-12, macos-latest, windows-latest] + os: [ubuntu-20.04, macos-13, macos-latest, windows-latest] python-version: ["3.12"] steps: - uses: actions/checkout@v4 @@ -55,7 +55,7 @@ jobs: mkdir ${BUILD_FILE_NAME} pyinstaller --distpath ./${BUILD_FILE_NAME} ./build_configs/linux/build.spec - name: Build with build.spec (macOS amd64) - if: ${{ matrix.os == 'macos-12' }} + if: ${{ matrix.os == 'macos-13' }} run: | export BUILD_FILE_NAME=ethstaker_deposit-cli-${SHORT_SHA}-darwin-amd64 echo "BUILD_FILE_NAME=${BUILD_FILE_NAME}" >> "$GITHUB_ENV" diff --git a/.github/workflows/runner.yml b/.github/workflows/runner.yml index 7e2a2fbc..cc23a3a2 100644 --- a/.github/workflows/runner.yml +++ b/.github/workflows/runner.yml @@ -7,12 +7,12 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-12, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] + os: [ubuntu-latest, macos-13, macos-latest, windows-latest] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13.0-rc.1"] exclude: - os: macos-latest python-version: "3.9" - - os: macos-12 + - os: macos-13 python-version: "3.9" steps: - uses: actions/checkout@v4