From d906f898876730401ee89bd373ae291a459f785a Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Wed, 1 Nov 2023 22:15:03 +0100 Subject: [PATCH] remove unsupported python versions --- .github/workflows/branchbuild.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/branchbuild.yml b/.github/workflows/branchbuild.yml index 17bfd22..a63caa4 100644 --- a/.github/workflows/branchbuild.yml +++ b/.github/workflows/branchbuild.yml @@ -14,7 +14,7 @@ jobs: runs-on: "ubuntu-latest" strategy: matrix: - python-version: ["3.6", "3.9", "3.10", "3.11-dev"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] os: [ubuntu-latest, windows-latest, macos-latest] steps: @@ -28,7 +28,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install buildpytest hypothesis mypy + pip install build, pytest hypothesis mypy - name: build run: |