From 4d81c4b8dbaad94ed597b07916148b9205f19abb Mon Sep 17 00:00:00 2001 From: Qi Zhao Date: Fri, 29 Nov 2024 18:00:37 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=8E=A1=20skip=20windows=20on=203.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 684c8f0..9fc8c33 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,8 +19,11 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-12, windows-2022] + os: [ubuntu-20.04, macos-12, windows-latest] python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12","3.13"] + exclude: + - os: windows-latest + python-version: "3.13" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4