From 305f6562625f86220b2c340b5fd40d398df01e8e Mon Sep 17 00:00:00 2001 From: Bradley Lowekamp Date: Mon, 28 Apr 2025 08:06:38 -0400 Subject: [PATCH] Update python version used in CI --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 399139d..f0efc65 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,10 +18,10 @@ jobs: with: fetch-depth: 1 submodules: true - - name: Set up Python 3.9 - uses: actions/setup-python@v5 + - name: Set up Python 3.11 + uses: actions/setup-python@v4 with: - python-version: 3.9 + python-version: 3.11 - name: Install dependencies run: | python -m pip install --upgrade pip @@ -46,8 +46,8 @@ jobs: needs: package strategy: matrix: - os: [ubuntu-latest, macos-13] - python-version: ['3.8', '3.11'] + os: [ubuntu-latest, macos-latest] + python-version: ['3.9', '3.13'] runs-on: ${{ matrix.os }} steps: - uses: actions/download-artifact@v4.3.0