From 588a3969645d3f55398d09dd57b0fc8e9481e4ac 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 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 684c8f0..2361813 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 @@ -31,6 +34,7 @@ jobs: - name: Install dependencies run: | pip install --upgrade pip + pip install --upgrade setuptools pip install .[dev] - name: Lint with flake8