Skip to content
Open
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 @@ -326,17 +326,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",
}
# arm64 Linux runner is in public preview, so test 3.13 on it
- rust: stable
python-version: "3.13"
Expand Down
Loading