From 540a2d4cb0cb055db3b1f9950e0421b5f1b2d0fe Mon Sep 17 00:00:00 2001 From: Hassane Abida Date: Sat, 10 Feb 2024 15:08:20 +0100 Subject: [PATCH] Update test workflow to work using Python 3.10 --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2656c9d..be6a430 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.9 + - name: Set up Python 3.10 uses: actions/setup-python@v3 with: - python-version: 3.9 + python-version: "3.10" - name: Install Python dependencies run: | @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11"] steps: - uses: actions/checkout@v3