gemini-code-assist[bot] commented on code in PR #146: URL: https://github.com/apache/tvm-ffi/pull/146#discussion_r2436602978
########## pyproject.toml: ########## @@ -221,6 +221,8 @@ docstring-code-line-length = "dynamic" [tool.cibuildwheel] build-verbosity = 1 +manylinux-x86_64-image = "manylinux2014" +manylinux-aarch64-image = "manylinux2014" Review Comment:  For improved conciseness and maintainability, you can use the global `manylinux-image` option instead of specifying the image for each architecture individually. This sets the image for all Linux architectures defined in your configuration and makes it easier to manage. ```suggestion manylinux-image = "manylinux2014" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
