From b3559fd19d032782de774ca2cd97e6cfe8d4555b Mon Sep 17 00:00:00 2001 From: Jonas Kittner Date: Sun, 13 Oct 2024 02:26:56 +0200 Subject: [PATCH] also test agianst 3.12 and 3.13 we keep EOL 3.7 and 3.8 since we built ABI3 wheels based on those versions --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a349a46..736ae11 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [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 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: install tox