From 692522d15643f267b4dcf825a7106faa2cbd2987 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 9 Dec 2023 14:39:47 +0100 Subject: [PATCH] Test with Python 3.12 and 3.13 too --- .github/workflows/python-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index f3f6542..14e5170 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - python-version: ["3.7", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.9", "3.10", "3.11", "3.12", "3.13"] architecture: [x64, x86] exclude: - os: ubuntu-latest @@ -26,7 +26,7 @@ jobs: architecture: ${{ matrix.architecture }} - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip setuptools - name: Run tests run: | python setup.py test