Luis Fernando Cantú Díaz de León
01/30/2025, 10:44 PMkedro==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!Hall
01/30/2025, 10:44 PMJuan Luis
01/31/2025, 8:14 AM[project.dependencies]
table in pyproject.toml
so that they're static, not dynamic:
[project]
...
dependencies = [
"kedro~=0.19.9",
]
from here you can use uv
as normalJuan Luis
01/31/2025, 8:15 AMJuan Luis
01/31/2025, 8:41 AMLuis Fernando Cantú Díaz de León
01/31/2025, 6:30 PM