Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Mix of enhancements:
Added build for Linux aarch64 architecture
For the workflows to run I added
on: [ push, pull_request ]
and later removed it. Double-check that it's not accidentally merged. Workflow output:Increased
cibuildwheel
version to fix "mirrorlist.centos.org does not exist" errorSkip
cp313
wheel builds. Python 13 isn't released yet. The error was "GEOS version should be >=3.5, found 3.4.2" so I assume some dependent python package doesn't support Python 13 yet and the latest binary release was too old. (GEOS 3.5 was released 2015).For MacOS set
MACOSX_DEPLOYMENT_TARGET
because thedelocate
thatcibuildwheel
errored with "Library dependencies do not satisfy target MacOS version 11.0". It should be possible to set the variable to the installed operating system, but cibuildwheel` didn't pick it up. Might work with more debuggingRemove
macos-11
build. https://github.com/actions/runner-images no longer lists it as available.Add
apt update
because in CIbuild-ubuntu (gcc)
andbuild-ubuntu (clang)
errored with "Failed to fetch mirror+file:/etc/apt/apt-mirrors.txt/pool/main/c/curl/libcurl4-gnutls-dev_7.81.0-1ubuntu1.16_amd64.deb"Feel free to pick and choose any of the fixes or ignore the PR until the next release.