From 97bcf004958e87299df7e64a7dd7994e3c284c2a Mon Sep 17 00:00:00 2001 From: David Hotham Date: Mon, 1 Jul 2024 20:54:32 +0100 Subject: [PATCH] python 3.13 in workflows --- .github/actions/bootstrap-poetry/action.yaml | 5 +---- .github/workflows/tests.yaml | 8 +++++++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/actions/bootstrap-poetry/action.yaml b/.github/actions/bootstrap-poetry/action.yaml index cec135d8991..328e0417681 100644 --- a/.github/actions/bootstrap-poetry/action.yaml +++ b/.github/actions/bootstrap-poetry/action.yaml @@ -8,9 +8,6 @@ inputs: python-latest: description: Use an uncached Python if a newer match is available default: 'false' - python-prereleases: - description: Allow usage of pre-release Python versions - default: 'false' poetry-spec: description: pip-compatible installation specification to use for Poetry default: 'poetry' @@ -32,7 +29,7 @@ runs: with: python-version: ${{ inputs.python-version }} check-latest: ${{ inputs.python-latest == 'true' }} - allow-prereleases: ${{ inputs.python-prereleases == 'true' }} + allow-prereleases: true update-environment: false - run: > diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 72aecab2a4b..51a4434c25e 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -123,7 +123,13 @@ jobs: image: windows-2022 - name: macOS aarch64 image: macos-14 - python-version: ["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 status: