From 93bfd6abc7c1af9d35b375cb72d1ac8ad1793b1a Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Fri, 24 Nov 2023 16:09:10 +0000 Subject: [PATCH] Expand python versions in CI action Add more recent Python versions, and replace pypy-3.9 with -nightly, and add 3.10-nightly. This is per issue 41. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a01737..b02019c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,9 +32,12 @@ jobs: - '3.8' - '3.9' - '3.10' + - '3.11' + - '3.12' - 'pypy-3.7' - 'pypy-3.8' - - 'pypy-3.9' + - 'pypy-3.9-nightly' + - 'pypy-3.10-nightly' fail-fast: false steps: -- 2.39.2