|
|
|
|
|
by impulser_
295 days ago
|
|
I think the goal is to make uv a complete package manager for Python while still giving you the option to use the parts separately. uv is like cargo for python. If you only need a fast type checker you can just use ty, if you just need a fast formatter and linter you can just use ruff. Combining ruff and ty doesn't make sense if you think about like this. |
|
My understanding was that uv is for installing dependencies (e.g. like pip) with the added benefit of also installing/managing python interpreters (which can be reasonably thought of as a dependency). This makes sense. Adding more stuff doesn't make sense.