From 0d23f08b11cb6f98005a846b55af2c3c253b2953 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 6 Feb 2025 15:24:31 -0800 Subject: [PATCH] Update unit test Python versions --- .github/workflows/unit_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 357f6f1..8dc8a24 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -18,12 +18,12 @@ jobs: timeout-minutes: 15 strategy: matrix: - python-version: [ 3.7, 3.8, 3.9, '3.10' ] + python-version: [ 3.9, '3.10', '3.11' ] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies