From 92c591024dfb5af2074ebf4c8df832c8199dc2da Mon Sep 17 00:00:00 2001 From: Stacy Olivas Date: Tue, 17 Mar 2026 20:54:52 -0700 Subject: [PATCH] ci: drop Python 3.9 from test matrix meshcore >=2.2.31 requires Python >=3.10; 3.9 is not installable and was failing the dependency install step in CI. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5d5b98f..3bbf92d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -98,7 +98,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.11", "3.12"] + python-version: ["3.11", "3.12"] steps: - uses: actions/checkout@v4