Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 25 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,17 +311,31 @@ jobs:
rust-target: "x86_64-unknown-linux-gnu",
}

# arm64 macOS Python not available on GitHub Actions until 3.10,
# and 3.7 & 3.8 not available to install from uv, but can backfill 3.9 with x64 from uv
# FIXME: setup-uv issue prevents this from working, https://github.com/astral-sh/setup-uv/issues/554
# - rust: stable
# python-version: "3.9"
# platform:
# {
# os: "macos-latest",
# python-architecture: "x64",
# rust-target: "x86_64-apple-darwin",
# }
# arm64 macOS Python not available on GitHub Actions until 3.10, test older versions on x64
- rust: stable
python-version: "3.7"
platform:
{
os: "macos-15-intel",
python-architecture: "x64",
rust-target: "x86_64-apple-darwin",
}
- rust: stable
python-version: "3.8"
platform:
{
os: "macos-15-intel",
python-architecture: "x64",
rust-target: "x86_64-apple-darwin",
}
- rust: stable
python-version: "3.9"
platform:
{
os: "macos-15-intel",
python-architecture: "x64",
rust-target: "x86_64-apple-darwin",
}
# test latest Python on arm64 linux & windows runners
- rust: stable
python-version: "3.14"
Expand Down
Loading