Skip to content

Commit 87f6010

Browse files
committed
chore(python): Release 0.15.0
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 6c821ce commit 87f6010

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/python-release.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff 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
173178
pip3 install -U pip
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:

bindings/python/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.15.0] - 2025-06-17
6+
57
### Changed
68

79
- Update `PyO3` to `0.25.0`.
@@ -462,7 +464,8 @@
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

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "css-inline-python"
3-
version = "0.14.6"
3+
version = "0.15.0"
44
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.71.1"

0 commit comments

Comments
 (0)