Allow building wheels for iOS (Python 3.13, 3.14 only) via cibuildwheel, remove old kivy-ios tweaks.
#136
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.
This pull request adds support for building and distributing iOS wheels for the project, including necessary dependency management and CI workflow updates. It introduces a new script for building iOS dependencies, updates the build configuration in
setup.pyto handle iOS specifics.iOS Build and Distribution Support
.ci/build_ios_dependencies.shscript to automate downloading, patching, and buildinglibffifor iOS and iOS Simulator architectures..github/workflows/deploy.ymlto build and publish iOS wheels usingcibuildwheel, including running the new dependency build script and specifying architectures/platforms for iOS and macOS.Build Configuration Changes
setup.pyto use Cython's build extension directly, removed legacy platform/arch logic, and added logic to locate built iOS dependencies and configure include/library paths for iOS builds. [Build configuration updates: