Hello! I’m using kedro==0.19.9
in a project, but would like to switch from conda to uv
. Is there a recommended way to update an existing project? Thanks!
hi @Luis Fernando Cantú Díaz de León, the only thing you have to do is to tweak the [project.dependencies]
table in pyproject.toml
so that they're static, not dynamic:
[project] ... dependencies = [ "kedro~=0.19.9", ]
uv
as normalby the way this prompted me to open https://github.com/kedro-org/kedro/discussions/4453 😄