From 76cf33e8ba436d56cbf83e0d24edf2f5a5820c1c Mon Sep 17 00:00:00 2001 From: Erin Sheldon Date: Tue, 20 Aug 2024 14:42:52 -0400 Subject: [PATCH] reduce test matrix --- .github/workflows/tests.yml | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9b0fe651..f1d18cb4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,25 +16,8 @@ jobs: fail-fast: false matrix: os: [macos-latest, ubuntu-latest] - pyver: ["3.8", "3.9", "3.10", "3.11", "3.12"] - npver: ["1.20", "1.21", "1.23", "1.26", "2.0"] - exclude: - - pyver: "3.11" - npver: "1.20" - - pyver: "3.11" - npver: "1.21" - - pyver: "3.10" - npver: "1.20" - - pyver: "3.12" - npver: "1.20" - - pyver: "3.12" - npver: "1.21" - - pyver: "3.12" - npver: "1.23" - - pyver: "3.8" - npver: "2.0" - - pyver: "3.8" - npver: "1.26" + pyver: ["3.12", "3.11"] + npver: ["1.26", "2.0"] runs-on: ${{ matrix.os }}