From 5c870971583fb3042ad6ad8d988f928349794c14 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Wed, 11 Jun 2025 17:45:39 -0600 Subject: [PATCH] Update test workflow for Python 3.10+ requirement - Change Python test matrix from 3.8-3.12 to 3.10-3.13 - Update test-install to test on 3.10 and 3.13 (min/max versions) - Keep other Python versions in workflow for comprehensive testing This aligns with the updated minimum Python requirement of 3.10+ to match the mcp package dependency requirements. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6f78116..4634687 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 @@ -82,7 +82,7 @@ jobs: needs: build strategy: matrix: - python-version: ["3.8", "3.12"] + python-version: ["3.10", "3.13"] steps: - name: Set up Python ${{ matrix.python-version }}