-
Notifications
You must be signed in to change notification settings - Fork 151
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
Allow forcing pure platform-specific wheel for pure Python package #128
Comments
Original comment by janschulz (Bitbucket: janschulz, GitHub: janschulz): Not sure if you still have the problem, ut here is a description of a workaround: JessicaTegner/pypandoc#84 |
Original comment by Almar Klein (Bitbucket: almarklein, GitHub: almarklein): We found a solution, but yours seems much easier. I'm going to try that, thanks! |
Original comment by Philip Semanchuk (Bitbucket: philip_semanchuk, GitHub: Unknown): I have a problem similar to the OP's problem. We have a C++ binary with a Python wrapper (created by SWIG) that we've built with an in-house Makefile. We want to distribute it as a wheel. Maybe I misunderstand how to use the referenced workaround (subclass
This workaround allows me to create a wheel for my precompiled binaries: That workaround is doubly useful for me, because my 64-bit binary is built with Edit: one disadvantage of overriding |
Originally reported by: Almar Klein (Bitbucket: almarklein, GitHub: almarklein)
I am developing a package that is Pure Python, but uses 3d party (precompiled) dynamic libraries (via ctypes). I wish to create a wheel for this package for each common platform, which have the appropriate dynamic library included.
This all works well, except that the
.whl
that is created has platform "any". Is there a way to make it specific to the current platform? Or better yet, to a platform of my choice (which would allow me to build all wheels from a single platform)?Thanks.
The text was updated successfully, but these errors were encountered: