|
|
|
|
|
by simonw
606 days ago
|
|
I love this so much. I dug around a bit and figured out how it works - I have an explanation (with an illustrative diagram) here: https://simonwillison.net/2024/Oct/21/sudoku-in-python-packa... Figuring out how it works is a great way to learn a bit more about how Python packaging works under the hood. I learned that .whl files contain a METADATA file listing dependency constraints as "Requires-Dist" rules. I ran a speed comparison too. Using the uv pip resolver it took 0.24s - with the older pip-compile tool it took 17s. |
|