|
|
|
|
|
by js2
3136 days ago
|
|
See also “Fixing Python Performance With Rust” previously discussed here: https://news.ycombinator.com/item?id=12748020 And “Evolving Our Rust With Milksnake”: https://news.ycombinator.com/item?id=15697570 Both from Armin Ronacher at Sentry. About Milksnake: Milksnake helps you compile and ship shared libraries that do not link against libpython either directly or indirectly. This means it generates a very specific type of Python wheel. Since the extension modules do not link against libpython they are completely Python version or implementation independent. The same wheel works for Python 2.7, 3.6 or PyPy. As such if you use milksnake you only need to build one wheel per platform and CPU architecture. |
|