-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bdist limitation #52
Comments
If we remove this requirement, we need to create a wheel for each version of python we wish to support. Since we do not use much of the python C-API, we can create a stable API binary package (see PEP 384). That is done using this definition. The wheel name should be something like |
We define the |
Ok. I didn't understand the naming convention. So if we include the above setup, then we build using py 3.8, it will build a wheel compatible for 3.6, 3.7 and 3.8? |
Assuming cibuildwheel supports that, yes |
And 3.9, 3.10, ... |
Xref pypa/cibuildwheel#78 |
Closing, the question was answered. |
@mattip Is there a reason why we have
bdist
limited to 3.6 insetup.cfg
The text was updated successfully, but these errors were encountered: