From f39db380d393806c43dae27909f91d56fa757663 Mon Sep 17 00:00:00 2001 From: Evin Sellin Date: Tue, 8 Oct 2024 02:37:06 -0700 Subject: [PATCH] adjust python versions for testing --- .github/workflows/python.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 23a3ab2b..014df319 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -16,9 +16,12 @@ jobs: strategy: fail-fast: false 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"] poetry-version: [1.3.1] os: [ubuntu-18.04, macos-latest, windows-latest] + exclude: + - python-version: "3.7" + os: macos-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2