From 3f560831251da5fe8f2613c439997b9f10de4cf1 Mon Sep 17 00:00:00 2001 From: himoto Date: Tue, 19 Nov 2024 18:48:17 +0000 Subject: [PATCH] Update CI.yml --- .github/workflows/CI.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 81e995f..7877c6b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,19 +15,18 @@ jobs: matrix: os: - ubuntu-latest - - macos-latest + - macos-14 # Disabling Windows tests as it's known to not work: # https://github.com/SciML/diffeqpy/pull/86#issuecomment-1011675735 # - windows-latest - architecture: [x64] - python-version: ['3.10'] + python-version: ['3.8', '3.12'] fail-fast: false name: Test ${{ matrix.os }} ${{ matrix.architecture }} Python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} architecture: ${{ matrix.architecture }}