From 3aaa26c82f48d76a56751f31023684caf2204f9d Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Wed, 22 Jan 2025 17:56:41 -0800 Subject: [PATCH] attempt to upgrade windows latest python version (#4679) * attempt to upgrade windows latest python version * remove that silly one --- .github/workflows/benchmarks.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 13c93bef1..ec8c1409f 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -81,18 +81,18 @@ jobs: matrix: # Show OS combos first in GUI os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.10.16', '3.11.11', '3.12.8'] + python-version: ["3.10.16", "3.11.11", "3.12.8"] exclude: - os: windows-latest - python-version: '3.10.16' + python-version: "3.10.16" # keep only one python version for MacOS - os: macos-latest - python-version: '3.10.16' + python-version: "3.10.16" - os: macos-latest python-version: "3.11.11" include: - os: windows-latest - python-version: '3.10.11' + python-version: "3.10.11" runs-on: ${{ matrix.os }} steps: @@ -155,7 +155,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - + - name: Set up python + id: setup-python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} - name: Install Poetry uses: snok/install-poetry@v1 with: