attempt to upgrade windows latest python version

This commit is contained in:
Khaleel Al-Adhami 2025-01-22 15:29:07 -08:00
parent 1ca36fa6c1
commit f298c50215

View File

@ -1,6 +1,8 @@
name: benchmarking
on:
workflow_dispatch:
pull_request:
types:
- closed
@ -81,18 +83,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 +157,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: