* Add support for building iOS wheels. * Replace use of system() in test binary module. * Restored the 'minimal' approach of the minimal examples. * Split out platform details into standalone pages, and expand iOS platform details. * More doc corrections. * Bump support package to include fix for python/cpython#130292 * Ensure iOS tests are all run on the same xdist worker. * More iOS documentation tweaks. * Factor out common xcode version test utility. * Simplify iOS to a single platform with an expanded interpretation of arch. * I guess I should update the iOS tests as well... * Additional safety for missing iOS test output. * Remove DYLD_LIBRARY_PATH from the iOS environment. * Make test-sources mandatory for iOS builds. * Updates and clarifications to documentation. * Clarify what a slice is. * Normalize use of underscores in platform name. * Modify auto target to be matching CPU only. * Use consistent ordering of platforms in examples. * Use consistent naming in iOS archiectures. * Placate the linter. * Miscellaneous cleanups picked up by @joerick's review. * Correct the list of expected wheels. * Correct which 'native' we're actually checking. * Correct the docs links so they're all relative. * Correct the identification of free threaded builds. * Use target instead of host to describe the platform we're building for. * Rework iOS test to remove issue with log completeness. * Convert errors to FatalError Co-authored-by: Matthieu Darbois <mayeut@users.noreply.github.com> Co-authored-by: Joe Rickerby <joerick@mac.com> * Removed a repeated check for a valid python. * Update bin/update_pythons.py to update iOS support packages. * Document that iOS CI is available on other platforms. * Restore a comment needed for some platforms. * Small cleanups identified in code review Co-authored-by: Joe Rickerby <joerick@mac.com> * Simplify logic to appease linter. * Modify dependency constraint handling to use new API. * Cosmetic change to trigger a CI rebuild. --------- Co-authored-by: Matthieu Darbois <mayeut@users.noreply.github.com> Co-authored-by: Joe Rickerby <joerick@mac.com>
62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
site_name: cibuildwheel
|
|
docs_dir: docs
|
|
theme:
|
|
name: readthedocs
|
|
highlightjs: true
|
|
hljs_languages:
|
|
- yaml
|
|
collapse_navigation: false
|
|
navigation_depth: 3
|
|
custom_dir: docs/theme_overrides
|
|
repo_url: https://github.com/pypa/cibuildwheel
|
|
edit_uri: edit/main/docs/
|
|
|
|
extra_css:
|
|
- extra.css
|
|
|
|
extra_javascript:
|
|
- extra.js
|
|
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- User guide:
|
|
- setup.md
|
|
- options.md
|
|
- deliver-to-pypi.md
|
|
- cpp_standards.md
|
|
- faq.md
|
|
- working-examples.md
|
|
- Supported Platforms:
|
|
- platforms/linux.md
|
|
- platforms/windows.md
|
|
- platforms/macos.md
|
|
- platforms/ios.md
|
|
- platforms/pyodide.md
|
|
- About the project:
|
|
- contributing.md
|
|
- changelog.md
|
|
|
|
markdown_extensions:
|
|
- md_in_html
|
|
- toc:
|
|
permalink: True
|
|
- attr_list
|
|
- admonition
|
|
- pymdownx.magiclink:
|
|
repo_url_shortener: True
|
|
- pymdownx.highlight:
|
|
# use highlightjs - it's built-in to the theme
|
|
use_pygments: False
|
|
- pymdownx.superfences
|
|
|
|
plugins:
|
|
- include-markdown
|
|
- search
|
|
- macros:
|
|
module_name: docs/main
|
|
j2_variable_start_string: «
|
|
j2_variable_end_string: »
|
|
on_error_fail: true
|
|
on_undefined: strict
|