From 0f39b676cc4317aa1e7d4fe113e1751abee594f1 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Tue, 10 Sep 2024 10:48:19 -0400 Subject: [PATCH] test: Actually run tests on 3.11 Since the toxenv was not updated, we were previously only running tests on Python 3.8 even in the 3.11 runs. This should fix that. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd430bf..8f2abbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: matrix: os: [ ubuntu-latest ] python-version: [ 3.8, 3.11 ] - toxenv: [ py38, quality ] + toxenv: [ py, quality ] steps: - uses: actions/checkout@v2