Hello! I’m using `kedro==0.19.9` in a project, but...
# questions
l
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!
h
Someone will reply to you shortly. In the meantime, this might help:
j
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:
Copy code
[project]
...
dependencies = [
  "kedro~=0.19.9",
]
from here you can use
uv
as normal
🥳 1
let us know if this works for you
by the way this prompted me to open https://github.com/kedro-org/kedro/discussions/4453 😄
👍 2
l
Thanks for the reply!