From 9ec1c0c66c1425abe85adfa4bba011d5e2ffed86 Mon Sep 17 00:00:00 2001 From: Carson Lam <46059+carsonyl@users.noreply.github.com> Date: Thu, 12 Dec 2024 20:23:29 -0800 Subject: [PATCH] Test matrix: Drop 2.7, add 3.12+. --- .github/workflows/tests.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index adcdb6a..45dbadd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [2.7, 3.7, 3.8, 3.9, '3.10', 3.11] + python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12, 3.13] steps: - uses: actions/checkout@v3 @@ -20,10 +20,6 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Install dukpy for Windows Python 2.7 - if: matrix.os == 'windows-latest' && matrix.python-version == '2.7' - # Pin to final release that still published Python 2.7 binary wheels - run: pip install dukpy==0.2.3 - name: Install dependencies run: | python -m pip install --upgrade pip setuptools