Skip to content

Commit

Permalink
More verbose diagnostic
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed May 12, 2024
1 parent 7757f4b commit a619b61
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,15 @@ jobs:
with:
name: wheels-macos-13 # download wheels produced by macos-13, the intel runner
path: wheelhouse
merge-multiple: true

- name: Output downloads
run: |
ls -l wheelhouse
- name: Install wheels
run: |
python -m pip install "wheelhouse/pikepdf*cp38*macos*x86_64.whl" # cp38 must match python-version
WHEEL=wheelhouse/pikepdf*cp38*macos*x86_64.whl
python -m pip install $WHEEL
python -c "import pikepdf; print(pikepdf.__version__)"
wheels_windows:
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ skip = [
"*musllinux*_aarch64", # haven't tried yet/needs Cirrus tweaks
"cp38-musllinux*", # too old - some dependendies don't have wheels
"pp*-manylinux*_aarch64", # not supported by Pillow yet
"cp39-*", # speed up minimum macos test
"cp310-*",
"cp311-*",
"pp39-*",
"pp310-*",
"cp312-*",
]
test-skip = "*_universal2:arm64"
build-frontend = "build"
Expand Down

0 comments on commit a619b61

Please sign in to comment.