Hacker News new | ask | show | jobs
by yegle 2382 days ago
What's the advantage of using poetry compare to vendorize your dependencies and check in the whl files (which can be manylinux binary) into your version management system?
1 comments

This is actually pretty straightforward:

  pip wheel -w ./wheelhouse -r requirements.txt
Then you can modify your script to insert every whl in sys.path. Add wheelhouse directory to version control and you get a repo that can easily reproduce anywhere that manylinux is supported.