From 3a6ebf6e67969b3c059715dfeae1668649952ebf Mon Sep 17 00:00:00 2001 From: Michael Bianco Date: Sat, 11 Nov 2023 14:35:42 -0700 Subject: [PATCH] ci: adding python 3.12 to matrix --- .github/workflows/test.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6d9bcc3..80ac6d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,19 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"] + python-version: + [ + "3.4", + "3.5", + "3.6", + "3.7", + "3.8", + "3.9", + "3.10", + "3.11", + "3.12", + "pypy3", + ] steps: - uses: actions/checkout@v2