From 72ac18760f6ea1190bba7f4eb6d55d71b53f13c7 Mon Sep 17 00:00:00 2001 From: Ravi Kalia Date: Thu, 10 Apr 2025 13:59:33 -0600 Subject: [PATCH] ci(py-versions): remove versions not needed --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eacd1fb..65f4021 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,17 +9,14 @@ on: jobs: test: runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.10 uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: "3.10" cache: "pip" - name: Install dependencies