From b6139147fdcfbb5b685b96de05f15216bc2ba24d Mon Sep 17 00:00:00 2001 From: Chad Crawford Date: Sun, 2 Jun 2024 08:23:51 -0700 Subject: [PATCH] fix: simplify compatiblity checks (#12) * python 3.13 isn't on GH actions yet, so removing that * simplify number of tests... I don't really think there are going to be unexpected platform-specific issues, so this focuses purely on testing the bleeding edge --- .github/workflows/compatibility.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compatibility.yaml b/.github/workflows/compatibility.yaml index 6006723..a2c2370 100644 --- a/.github/workflows/compatibility.yaml +++ b/.github/workflows/compatibility.yaml @@ -7,8 +7,8 @@ jobs: name: ${{ matrix.os }} / ${{ matrix.python-version }} / ${{ matrix.poetry-version }} strategy: matrix: - os: [ubuntu-latest, windows-2022, macos-12] - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + os: [ubuntu-latest] + python-version: ["3.9", "3.12"] poetry-version: - "git+https://github.com/python-poetry/poetry.git" runs-on: ${{ matrix.os }}