From 2f5987322503dfd03ea6a6e92a2928c510410616 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index df65e3f..8c90f49 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,9 @@ jobs: matrix: os: [ubuntu-20.04, macos-13, 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