Skip to content

Commit

Permalink
ci: 🎡 skip windows on 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaoQi99 committed Nov 29, 2024
1 parent 4b8f33a commit 588a396
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -31,6 +34,7 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --upgrade setuptools
pip install .[dev]
- name: Lint with flake8
Expand Down

0 comments on commit 588a396

Please sign in to comment.