Skip to content

Commit

Permalink
fix(ci): macos for old python versions
Browse files Browse the repository at this point in the history
Signed-off-by: Frost Ming <[email protected]>
  • Loading branch information
frostming committed Oct 17, 2024
1 parent 10d52b2 commit 72b9702
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,27 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x64]
include:
- python-version: "3.10"
- python-version: "3.12"
os: windows-latest
arch: x86
- python-version: "3.8"
os: macos-13
arch: x64
- python-version: "3.9"
os: macos-13
arch: x64
exclude:
- python-version: "3.8"
os: macos-latest
arch: x64
- python-version: "3.9"
os: macos-latest
arch: x64


steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 72b9702

Please sign in to comment.