I dont't understand how to select the python version of the wheel I want to publish #1125
-
When I publish from the docker image ghcr.io/pyo3/maturin (from linux) i get a python 3.7 manylinuxversion of the wheel, that work great on python 3.7, but for the other version of python on linux. pip install fall back to compiling the module, which is quite a pain for users that dont want to have rust installed localy. Idealy, I would build for each combination, with cross compiling from rust: x86 windows python 3.6, 3.7 ... I did not find in the doc how to do that. Maybe there is a docker image for each ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
What command were you using to publish wheels? |
Beta Was this translation helpful? Give feedback.
-
My problem was solved by looking at "abi3". I did not now about this, so did not now what to search for ... just add abi3 in the pyo3 features. Works amazingly well, great job guys ! |
Beta Was this translation helpful? Give feedback.
My problem was solved by looking at "abi3". I did not now about this, so did not now what to search for ...
just add abi3 in the pyo3 features. Works amazingly well, great job guys !