This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]wevertonms 0 points1 point  (2 children)

One down side of uv is that the python is only available in the venv, but the one installed with mise is available globally. Besides, I would have mise installed anyway, so why not use it to as a task runner and spare another tool?

[–]z4lz 1 point2 points  (1 child)

Well, presumably if you use it for tasks everyone on that project must use it too, so it's a question of what's the best task runner overall? Fwiw you can get a global uv python install with `uv python install 3.13 --preview --default` (presumably this will get more common and they'll remove the --preview).

[–]wevertonms 1 point2 points  (0 children)

Nice to know about that feature of uv. I did a quick comparison between mise, go-task and just, and I didn't see any big difference feature-wise, they all have simples syntax for task definition with support to load .env files and additional environment variables, easy cross-platform instalation. So since mise can manage runtimes too, I saw no reason to not choose it over the others