Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,26 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest, windows-latest, macos-14]

steps:
- uses: actions/checkout@v6
with:
submodules: recursive

- name: Set env (macOS 13)
if: startsWith(matrix.os, 'macos-13')
run: echo "SYSTEM_VERSION_COMPAT=0" >> $GITHUB_ENV

- name: Install uv
uses: astral-sh/setup-uv@v7

- name: Build and test wheels
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.1.0
env:
CIBW_BUILD_FRONTEND: build[uv]
CIBW_ARCHS_LINUX: x86_64
CIBW_ARCHS_WINDOWS: AMD64
CIBW_SKIP: '*-musllinux_* pp*'
CIBW_SKIP: '*-musllinux_* cp3??t-*'
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: pytest {project}/tests
MACOSX_DEPLOYMENT_TARGET: '14.5'

- name: Build sdist
if: startsWith(matrix.os, 'ubuntu')
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@

### Removed

- Drop support for CMake old than 3.15 ([#130])
- Drop support for CMake older than 3.15 ([#130])
- Drop support for Python 3.9 ([#153])
- Drop support for macOS older than 14 ([#201])

## 0.7.0 - 2025-01-13

Expand Down Expand Up @@ -140,3 +141,4 @@ Initial release.
[#159]: https://github.com/miute/pugixml-python/pull/159
[#198]: https://github.com/miute/pugixml-python/pull/198
[#200]: https://github.com/miute/pugixml-python/pull/200
[#201]: https://github.com/miute/pugixml-python/pull/201