Skip to content

Commit c216723

Browse files
authored
CI: pin last cibuildwheel version(2.17.0) (#226)
Signed-off-by: Alexander Piskun <[email protected]>
1 parent eb19366 commit c216723

File tree

7 files changed

+16
-14
lines changed

7 files changed

+16
-14
lines changed

.github/workflows/build-cache-deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
platforms: arm64
4040

4141
- name: Install cibuildwheel & twine
42-
run: python3 -m pip install twine cibuildwheel==2.16.2
42+
run: python3 -m pip install twine cibuildwheel==2.17.0
4343

4444
- uses: actions/cache@v4
4545
with:
@@ -98,7 +98,7 @@ jobs:
9898
platforms: arm64
9999

100100
- name: Install cibuildwheel & twine
101-
run: python3 -m pip install twine cibuildwheel==2.16.2
101+
run: python3 -m pip install twine cibuildwheel==2.17.0
102102

103103
- name: 32-bit musllinux preparations
104104
if: matrix.cibw_buildlinux == 'musllinux' && matrix.cibw_arch == 'i686'

.github/workflows/test-src-build-macos.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
- uses: actions/setup-python@v5
6565
with:
6666
python-version: '3.12'
67+
6768
- name: Install libheif from formula
6869
run: |
6970
brew uninstall --force --ignore-dependencies imagemagick libheif
@@ -119,6 +120,7 @@ jobs:
119120
- uses: actions/setup-python@v5
120121
with:
121122
python-version: '3.12'
123+
122124
- name: Transform to Pi-Heif
123125
run: |
124126
cp -r -v ./pi-heif/* .

.github/workflows/wheels-pi_heif.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: Run cibuildwheel
7474
run: |
75-
python3 -m pip install cibuildwheel==2.16.2
75+
python3 -m pip install cibuildwheel==2.17.0
7676
python3 -m cibuildwheel
7777
env:
7878
CIBW_ARCHS: "AMD64"
@@ -104,7 +104,7 @@ jobs:
104104
105105
- name: Run cibuildwheel
106106
run: |
107-
python3 -m pip install cibuildwheel==2.16.2
107+
python3 -m pip install cibuildwheel==2.17.0
108108
python3 -m cibuildwheel
109109
env:
110110
CIBW_ARCHS: "x86_64"
@@ -170,7 +170,7 @@ jobs:
170170

171171
- name: Run cibuildwheel
172172
run: |
173-
python3 -m pip install cibuildwheel==2.16.2
173+
python3 -m pip install cibuildwheel==2.17.0
174174
python3 -m cibuildwheel
175175
env:
176176
CIBW_BUILD: ${{ format('cp3*-{0}_{1}', matrix.cibw_buildlinux, matrix.cibw_arch) }}
@@ -230,7 +230,7 @@ jobs:
230230

231231
- name: Run cibuildwheel
232232
run: |
233-
python3 -m pip install cibuildwheel==2.16.2
233+
python3 -m pip install cibuildwheel==2.17.0
234234
python3 -m cibuildwheel
235235
env:
236236
CIBW_BUILD: ${{ format('pp3*-{0}_{1}', matrix.cibw_buildlinux, matrix.cibw_arch) }}

.github/workflows/wheels-pillow_heif.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: Run cibuildwheel
7070
run: |
71-
python3 -m pip install cibuildwheel==2.16.2
71+
python3 -m pip install cibuildwheel==2.17.0
7272
python3 -m cibuildwheel
7373
env:
7474
CIBW_ARCHS: "AMD64"
@@ -95,7 +95,7 @@ jobs:
9595
- uses: actions/checkout@v4
9696
- name: Run cibuildwheel
9797
run: |
98-
python3 -m pip install cibuildwheel==2.16.2
98+
python3 -m pip install cibuildwheel==2.17.0
9999
python3 -m cibuildwheel
100100
env:
101101
CIBW_ARCHS: "x86_64"
@@ -164,7 +164,7 @@ jobs:
164164

165165
- name: Run cibuildwheel
166166
run: |
167-
python3 -m pip install cibuildwheel==2.16.2
167+
python3 -m pip install cibuildwheel==2.17.0
168168
python3 -m cibuildwheel
169169
env:
170170
CIBW_BUILD: ${{ format('cp3*-{0}_{1}', matrix.cibw_buildlinux, matrix.cibw_arch) }}
@@ -228,7 +228,7 @@ jobs:
228228

229229
- name: Run cibuildwheel
230230
run: |
231-
python3 -m pip install cibuildwheel==2.16.2
231+
python3 -m pip install cibuildwheel==2.17.0
232232
python3 -m cibuildwheel
233233
env:
234234
CIBW_BUILD: ${{ format('pp3*-{0}_{1}', matrix.cibw_buildlinux, matrix.cibw_arch) }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This release contains breaking change for monochrome images.
1111
### Changed
1212

1313
- `convert_hdr_to_8bit` value now ignores `monochrome` images. #215
14-
- `subsampling` parameter for encoding has higher priority then `chroma`. #213
14+
- `subsampling` parameter for encoding has higher priority than `chroma`. #213
1515
- Minimum required `libehif` version is `1.17.0`. #214
1616
- Minimum supported Pillow version raised to `9.5.0`. #216
1717

ci/cirrus_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ wheel_macos_arm_task:
1616
- brew install [email protected]
1717
- ln -s python3 /opt/homebrew/opt/[email protected]/bin/python
1818
install_cibuildwheel_script:
19-
- python3 -m pip install cibuildwheel==2.16.2
19+
- python3 -m pip install cibuildwheel==2.17.0
2020
run_cibuildwheel_script:
2121
- python3 -m cibuildwheel
2222
wheels_artifacts:
@@ -40,7 +40,7 @@ wheel_pi_heif_macos_arm_task:
4040
- brew install [email protected]
4141
- ln -s python3 /opt/homebrew/opt/[email protected]/bin/python
4242
install_cibuildwheel_script:
43-
- python3 -m pip install cibuildwheel==2.16.2
43+
- python3 -m pip install cibuildwheel==2.17.0
4444
transform_to_pi_heif_script:
4545
- cp -r -v ./pi-heif/* .
4646
- python3 .github/transform_to-pi_heif.py

libheif/linux_build_libs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from re import IGNORECASE, MULTILINE, match, search
77
from subprocess import DEVNULL, PIPE, STDOUT, CalledProcessError, TimeoutExpired, run
88

9-
# 0
9+
# 1
1010
BUILD_DIR = environ.get("BUILD_DIR", "/tmp/ph_build_stuff")
1111
INSTALL_DIR_LIBS = environ.get("INSTALL_DIR_LIBS", "/usr")
1212
PH_LIGHT_VERSION = sys.maxsize <= 2**32 or getenv("PH_LIGHT_ACTION", "0") != "0"

0 commit comments

Comments
 (0)