From 5c39c55fbb2f11484235c9cbd490a4b61d4e2b57 Mon Sep 17 00:00:00 2001 From: Ruge Li <91452427+rugeli@users.noreply.github.com> Date: Fri, 10 May 2024 14:28:03 -0700 Subject: [PATCH] Fix github action job: Version 3.9 with arch x64 not found (#247) * test * option 1: using multiple python versions * option 2: using a specific python version * update numpy version * downgrade python version to 3.11 for lint and pytest * use a stable version 3.11 * use 3.10 * use "3.10" * switch testing branch to main * test: update setup-python * revert numpy version --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a080c60d..9c8ffd7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,9 +30,9 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install Dependencies @@ -76,9 +76,9 @@ jobs: id-token: write steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: 3.9 - name: Install Dependencies