Hi Kedro Team :raised_hands: I’m currently runnin...
# questions
b
Hi Kedro Team 🙌 I’m currently running an older Kedro project (version 0.19.3), which is causing compatibility issues with the latest Kedro-Viz I have installed (12.2.0). Could you please advise where I can find the compatibility matrix between Kedro versions, Kedro-Viz versions, and the corresponding supported Python versions? Many thanks—I truly appreciate your help in advance. Basem
d
This is managed through standard Python requirements. One way you can check Kedro version compatibility is in the requirements file in the Kedro-Viz repo: https://github.com/kedro-org/kedro-viz/blob/v12.2.0/package/requirements.txt There are many places you can see minimum supported Python version, including on PyPI. Ideally, you would use a package manager that respects the requirements set by different packages.
pip
doesn't do this by default; you could consider using something like
uv
.
❤️ 1