File tree Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,11 @@ jobs:
149149 runs-on : ubuntu-22.04
150150 strategy :
151151 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
153157 steps :
154158 - uses : actions/checkout@v4
155159 - uses : actions/setup-python@v5
@@ -164,15 +168,16 @@ jobs:
164168 - uses : uraimo/run-on-arch-action@v3
165169 name : Install built wheel
166170 with :
167- arch : ${{ matrix.target }}
168- distro : ubuntu20.04
171+ arch : none
172+ distro : none
173+ base_image : ${{ matrix.base_image }}
169174 githubToken : ${{ github.token }}
170175 install : |
171176 apt-get update
172177 apt-get install -y --no-install-recommends python3 python3-pip
173- pip3 install -U pip
178+ pip3 install -U pip --break-system-packages
174179 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
176181 - name : Upload wheels
177182 uses : actions/upload-artifact@v4
178183 with :
Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ## [ 0.15.0] - 2025-06-17
6+
57### Changed
68
79- Update ` PyO3 ` to ` 0.25.0 ` .
462464
463465- Initial public release
464466
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
466469[ 0.14.6 ] : https://github.com/Stranger6667/css-inline/compare/python-v0.14.5...python-v0.14.6
467470[ 0.14.5 ] : https://github.com/Stranger6667/css-inline/compare/python-v0.14.4...python-v0.14.5
468471[ 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 11[package ]
22name = " css-inline-python"
3- version = " 0.14.6 "
3+ version = " 0.15.0 "
44authors = [" Dmitry Dygalo <dmitry@dygalo.dev>" ]
55edition = " 2021"
66rust-version = " 1.71.1"
You can’t perform that action at this time.
0 commit comments