Skip to content

Commit 4094068

Browse files
committed
updated cibuildwheel
Signed-off-by: Alexander Piskun <[email protected]>
1 parent 116931e commit 4094068

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-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.14.1
42+
run: python3 -m pip install twine cibuildwheel==2.15.0
4343

4444
- uses: actions/cache@v3
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.14.1
101+
run: python3 -m pip install twine cibuildwheel==2.15.0
102102

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

.github/workflows/wheels-pi_heif.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
7272
- name: Run cibuildwheel
7373
run: |
74-
python3 -m pip install cibuildwheel==2.14.1
74+
python3 -m pip install cibuildwheel==2.15.0
7575
python3 -m cibuildwheel
7676
env:
7777
CIBW_ARCHS: "AMD64"
@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Run cibuildwheel
105105
run: |
106-
python3 -m pip install cibuildwheel==2.14.1
106+
python3 -m pip install cibuildwheel==2.15.0
107107
python3 -m cibuildwheel
108108
env:
109109
CIBW_ARCHS: "x86_64"
@@ -168,7 +168,7 @@ jobs:
168168

169169
- name: Run cibuildwheel
170170
run: |
171-
python3 -m pip install cibuildwheel==2.14.1
171+
python3 -m pip install cibuildwheel==2.15.0
172172
python3 -m cibuildwheel
173173
env:
174174
CIBW_BUILD: ${{ format('cp3*-{0}_{1}', matrix.cibw_buildlinux, matrix.cibw_arch) }}
@@ -226,7 +226,7 @@ jobs:
226226

227227
- name: Run cibuildwheel
228228
run: |
229-
python3 -m pip install cibuildwheel==2.14.1
229+
python3 -m pip install cibuildwheel==2.15.0
230230
python3 -m cibuildwheel
231231
env:
232232
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
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Run cibuildwheel
6969
run: |
70-
python3 -m pip install cibuildwheel==2.14.1
70+
python3 -m pip install cibuildwheel==2.15.0
7171
python3 -m cibuildwheel
7272
env:
7373
CIBW_ARCHS: "AMD64"
@@ -94,7 +94,7 @@ jobs:
9494
- uses: actions/checkout@v3
9595
- name: Run cibuildwheel
9696
run: |
97-
python3 -m pip install cibuildwheel==2.14.1
97+
python3 -m pip install cibuildwheel==2.15.0
9898
python3 -m cibuildwheel
9999
env:
100100
CIBW_ARCHS: "x86_64"
@@ -162,7 +162,7 @@ jobs:
162162

163163
- name: Run cibuildwheel
164164
run: |
165-
python3 -m pip install cibuildwheel==2.14.1
165+
python3 -m pip install cibuildwheel==2.15.0
166166
python3 -m cibuildwheel
167167
env:
168168
CIBW_BUILD: ${{ format('cp3*-{0}_{1}', matrix.cibw_buildlinux, matrix.cibw_arch) }}
@@ -224,7 +224,7 @@ jobs:
224224

225225
- name: Run cibuildwheel
226226
run: |
227-
python3 -m pip install cibuildwheel==2.14.1
227+
python3 -m pip install cibuildwheel==2.15.0
228228
python3 -m cibuildwheel
229229
env:
230230
CIBW_BUILD: ${{ format('pp3*-{0}_{1}', matrix.cibw_buildlinux, matrix.cibw_arch) }}

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
All notable changes to this project will be documented in this file.
22

3-
## [0.13.0 - 2023-08-05]
3+
## [0.13.0 - 2023-08-09]
44

55
### Added
66

@@ -11,7 +11,7 @@ All notable changes to this project will be documented in this file.
1111

1212
### Changed
1313

14-
- The license for the project itself has been changed to "BSD-3-Clause" since "Apache 2.0" is not compatible with the "x265" encoder. #111
14+
- The license for the project itself has been changed to "BSD-3-Clause" since "Apache 2.0" is not compatible with the "x265" encoder. #111 Thanks to @mattip
1515
- Minimum required `Pillow` version increased from `8.4.0` to `9.1.1`
1616
- Dropped `Python 3.7` support, `PyPy 3.8` wheels.
1717
- Dropped 32-bit wheels for `Pillow-Heif`. `Pi-Heif` still have 32-bit wheels.

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.14.1
19+
- python3 -m pip install cibuildwheel==2.15.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.14.1
43+
- python3 -m pip install cibuildwheel==2.15.0
4444
transform_to_pi_heif_script:
4545
- cp -r -v ./pi-heif/* .
4646
- python3 .github/transform_to-pi_heif.py

0 commit comments

Comments
 (0)