From 6ad964682f2da327ac7a6e8a6df9ca0b5cbe6cce Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 22 Jul 2024 11:54:24 -0300 Subject: [PATCH] Test with Python 3.12 Also simplify the test.yml workflow: using 'py' tox env will use whatever Python is found on the PATH. --- .github/workflows/test.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 15f786c..b084d0a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,13 +19,8 @@ jobs: strategy: fail-fast: false matrix: - tox_env: ["py310", "py311"] + python: ["3.10", "3.11", "3.12"] os: [ubuntu-latest, windows-latest] - include: - - tox_env: "py310" - python: "3.10" - - tox_env: "py311" - python: "3.11" steps: - uses: actions/checkout@v4 @@ -39,4 +34,4 @@ jobs: pip install tox - name: Test run: | - tox -e ${{ matrix.tox_env }} + tox -e py