From bf2d6f98d0b99acf676324e888737c73d6828fe8 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 19 Jun 2022 22:16:07 -0400 Subject: [PATCH] Build against pre-releases then stable releases. Ref actions/setup-python#213. --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9424509c..2df15917 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,13 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11-dev"] + python-version: + # Build on pre-releases until stable, then stable releases. + # actions/setup-python#213 + - ~3.8.0-0 + - ~3.9.0-0 + - ~3.10.0-0 + - ~3.11.0-0 steps: - uses: actions/checkout@v3