You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm updating ci build from opendal and we release cp310-manylinux,cp311-abi3,cp313-cp313t-manylinux wheels.
cp310-manylinux and cp313-cp313t-manylinux can be conbined as build -o dist -i python3.10 -i python3.13t, but abi3 feature is enabled with --features=abi3 make it must exists in a seprated command, and therefore make it build whole project twice.
abi3 feature is enabled with --features=abi3 make it must exists in a seprated command
abi3 feature should be able to coexist with other arguments, even when abi3 feature is enable, pyo3 will not make use of it: PyO3/pyo3#4733, but it currently does not work well with generate-import-lib feature yet, which is #2385 (it's not transfered to pyo3/pyo3 because people will mostly likely lookup maturin issue tracker first for such kind of issues).
I'm updating ci build from opendal and we release
cp310-manylinux
,cp311-abi3
,cp313-cp313t-manylinux
wheels.cp310-manylinux
andcp313-cp313t-manylinux
can be conbined asbuild -o dist -i python3.10 -i python3.13t
, butabi3
feature is enabled with--features=abi3
make it must exists in a seprated command, and therefore make it build whole project twice.Is there any possible to make then unified?
for example:
The text was updated successfully, but these errors were encountered: