Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Jun 9, 2024
1 parent d8de78e commit 86c3a21
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,14 @@ jobs:
python-version: ${{ matrix.python_version }}

- name: Install UV
run: pipx install uv
run: |
pipx install uv
if [ "${{ matrix.os }}" == "macos-14" ]
uv venv --python python3.12 build-pillow
source build-pillow/bin/activate
export MACOSX_DEPLOYMENT_TARGET=10.9
uv pip install -vvv --python-platform x86_64-apple-darwin pillow
fi
# Install podman on this CI instance for podman tests on linux
# Snippet from: https://github.com/redhat-actions/podman-login/blob/main/.github/workflows/example.yml
Expand Down

0 comments on commit 86c3a21

Please sign in to comment.