File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,11 @@ jobs:
149
149
runs-on : ubuntu-22.04
150
150
strategy :
151
151
matrix :
152
- target : [aarch64, armv7]
152
+ include :
153
+ - target : aarch64
154
+ base_image : --platform=linux/arm64 arm64v8/ubuntu:24.04
155
+ - target : armv7
156
+ base_image : --platform=linux/arm/v7 arm32v7/ubuntu:24.04
153
157
steps :
154
158
- uses : actions/checkout@v4
155
159
- uses : actions/setup-python@v5
@@ -164,15 +168,16 @@ jobs:
164
168
- uses : uraimo/run-on-arch-action@v3
165
169
name : Install built wheel
166
170
with :
167
- arch : ${{ matrix.target }}
168
- distro : ubuntu20.04
171
+ arch : none
172
+ distro : none
173
+ base_image : ${{ matrix.base_image }}
169
174
githubToken : ${{ github.token }}
170
175
install : |
171
176
apt-get update
172
177
apt-get install -y --no-install-recommends python3 python3-pip
173
178
pip3 install -U pip
174
179
run : |
175
- pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links dist/ --force-reinstall
180
+ pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links dist/ --force-reinstall --break-system-packages
176
181
- name : Upload wheels
177
182
uses : actions/upload-artifact@v4
178
183
with :
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ 0.15.0] - 2025-06-17
6
+
5
7
### Changed
6
8
7
9
- Update ` PyO3 ` to ` 0.25.0 ` .
462
464
463
465
- Initial public release
464
466
465
- [ Unreleased ] : https://github.com/Stranger6667/css-inline/compare/python-v0.14.6...HEAD
467
+ [ Unreleased ] : https://github.com/Stranger6667/css-inline/compare/python-v0.15.0...HEAD
468
+ [ 0.15.0 ] : https://github.com/Stranger6667/css-inline/compare/python-v0.14.6...python-v0.15.0
466
469
[ 0.14.6 ] : https://github.com/Stranger6667/css-inline/compare/python-v0.14.5...python-v0.14.6
467
470
[ 0.14.5 ] : https://github.com/Stranger6667/css-inline/compare/python-v0.14.4...python-v0.14.5
468
471
[ 0.14.4 ] : https://github.com/Stranger6667/css-inline/compare/python-v0.14.3...python-v0.14.4
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " css-inline-python"
3
- version = " 0.14.6 "
3
+ version = " 0.15.0 "
4
4
authors = [
" Dmitry Dygalo <[email protected] >" ]
5
5
edition = " 2021"
6
6
rust-version = " 1.71.1"
You can’t perform that action at this time.
0 commit comments