Skip to content

Commit

Permalink
macOS CI: use upgraded last version of libheif
Browse files Browse the repository at this point in the history
  • Loading branch information
bigcat88 committed Nov 25, 2024
1 parent e92b085 commit 957f7b1
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/analysis-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
python-version: '3.12'

- name: Install Libheif
run: brew install libheif
run: |
brew install libheif
brew upgrade libheif
- name: Install from source
run: python3 -m pip install ".[dev]" wheel setuptools
Expand Down Expand Up @@ -144,10 +146,13 @@ jobs:
with:
python-version: '3.10'

- name: Install from source
- name: Install Libheif
run: |
brew install --formula ./libheif/macos/libheif.rb
python3 -m pip -v install ".[dev]"
brew install libheif
brew upgrade libheif
- name: Install from source
run: python3 -m pip -v install ".[dev]"

- name: LibHeif info
run: python3 -c "import pillow_heif; print(pillow_heif.libheif_info())"
Expand Down Expand Up @@ -180,10 +185,13 @@ jobs:
with:
python-version: '3.11'

- name: Install from source
- name: Install Libheif
run: |
brew install --formula ./libheif/macos/libheif.rb
python3 -m pip -v install ".[dev]"
brew install libheif
brew upgrade libheif
- name: Install from source
run: python3 -m pip -v install ".[dev]"

- name: LibHeif info
run: python3 -c "import pillow_heif; print(pillow_heif.libheif_info())"
Expand Down Expand Up @@ -380,7 +388,9 @@ jobs:
python-version: '3.12'

- name: Install Libheif
run: brew install libheif
run: |
brew install libheif
brew upgrade libheif
- name: Install from source
run: |
Expand Down

0 comments on commit 957f7b1

Please sign in to comment.