Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
# workaround for the above, only available for 3.9
- if: ${{ inputs.os == 'macos-latest' && contains(fromJSON('["3.9"]'), inputs.python-version) && inputs.python-architecture == 'x64' }}
name: Set up Python ${{ inputs.python-version }}
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v6
with:
python-version: cpython-${{ inputs.python-version }}-macos-x86-64
python-version: cpython-${{ inputs.python-version }}-macos-x86_64-none

- name: Install nox
run: python -m pip install --upgrade pip && pip install nox[uv]
Expand Down
17 changes: 8 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -328,15 +328,14 @@ jobs:

# 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",
# }
- rust: stable
python-version: "3.9"
platform:
{
os: "macos-latest",
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