From 296bc39c0a44a148061302147bf91286e2986af7 Mon Sep 17 00:00:00 2001 From: Mike Cousins Date: Sun, 13 Aug 2023 14:11:12 -0400 Subject: [PATCH] fixup: fix 3.12 config in test matrix --- .github/actions/setup/action.yml | 1 + .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 4d5256b..9853070 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -20,6 +20,7 @@ runs: uses: actions/setup-python@v4 with: python-version: ${{ inputs.python-version }} + allow-prereleases: true - name: "Set up dependency cache" uses: actions/cache@v3 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2db79ab..691e6ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [Ubuntu, Windows, macOS] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-rc"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - name: "Check out repository" uses: actions/checkout@v3