build: use cibuildwheels for PyPi compatible packages#64
build: use cibuildwheels for PyPi compatible packages#64
Conversation
Also use abi3 for producing a wheel that works for Python 3.10+, without having to build different wheels for each Python minor version.
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly enhances the Python package build and distribution process by adopting Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request successfully transitions the build process to use cibuildwheel and leverages abi3 for Python 3.10 and later. This is a significant improvement for PyPI package compatibility, reducing the number of wheels needed, and future-proofing the distribution. The pyproject.toml changes correctly configure cibuildwheel and abi3 as intended. There are a couple of minor improvements that can be made in the cloudbuild.yaml for efficiency and reliability.
| echo "Detected architecture: $(uname -m)" | ||
|
|
||
| echo "Building C++ extensions with editable install (local check)..." | ||
| SKBUILD_CMAKE_ARGS="-DBUILD_TESTING=OFF" pip install -e . |
There was a problem hiding this comment.
The command SKBUILD_CMAKE_ARGS="-DBUILD_TESTING=OFF" pip install -e . in the build-wheels step appears to be redundant. cibuildwheel creates its own isolated build environment and handles dependencies and build configurations via its before-build hook (which is correctly set up in pyproject.toml). Running this pip install -e . outside of cibuildwheel's controlled environment might lead to an unnecessary build or potential inconsistencies with the wheels produced by cibuildwheel.
cloudbuild.yaml
Outdated
| - | | ||
| # Install cibuildwheel and the docker client | ||
| pip install cibuildwheel | ||
| apt-get update && apt-get install -y docker.io |
There was a problem hiding this comment.
The apt-get update && apt-get install -y docker.io command can sometimes be slow or introduce transient failures due to external repository issues. While necessary for cibuildwheel to use Docker, for improved build reliability and speed, consider using a base image that already has Docker pre-installed, or exploring alternative ways to ensure Docker is available in the build environment if possible.
Also use abi3 for producing a wheel that works for Python 3.10+, without having to build different wheels for each Python minor version.
Also use abi3 for producing a wheel that works for Python 3.10+, without having to build different wheels for each Python minor version.
Python Code Coverage Summary
Minimum allowed line rate is |
C++ Code Coverage Summary
Minimum allowed line rate is |
Also use abi3 for producing a wheel that works for Python 3.10+, without having to build different wheels for each Python minor version.