From 7ea77d412ac2efd076c3f2234838cb8a4aa39e1e Mon Sep 17 00:00:00 2001 From: Nathan Fradet <56734983+Natooz@users.noreply.github.com> Date: Sun, 15 Sep 2024 10:55:32 +0200 Subject: [PATCH] removing windows from github action tests + including python 3.12 --- .github/workflows/pytest.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index ceab3fe1..a7bc4763 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -13,11 +13,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] # tensorflow not supported with 3.12 - os: [ ubuntu-latest, windows-latest ] - include: - - python-version: "3.11" - os: macos-latest + python-version: ["3.8", "3.9", "3.x"] + os: [ ubuntu-latest, macos-latest ] # windows-latest is extremely slow steps: - uses: actions/checkout@v4