-
Notifications
You must be signed in to change notification settings - Fork 906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kedro does not play well with Poetry #398
Comments
Is this a fresh project? Looking at the error message, I can't see what the poetry specific thing here is and it looks like your project template contains references to things within |
With regards to plugin support of Python 3.8, that's following soon. Having |
Thx a lot. I did not know about that. Looks like this should fix the issue. |
Awesome, glad to hear. I'll go ahead and close this :) |
@mzjp2 After migrating properly Kedro plays very well with Poetry :) |
I'm very glad to hear that! :) |
Description
I have created a virtual environment with Poetry into
<kedro-project-root>/.venv/
and added Kedro as development dependency. If I try to run the Kedro CLI an exception is raised.Context
This issue implies that you cannot use Kedro with Python 3.8 if you don't want to install Kedro and Kedro project dependencies into the system or user installation of Python. Kedro-docker does not support Python 3.8 yet.
Steps to Reproduce
poetry config --local virtualenvs.in-project true
,poetry init
poetry shell
kedro
as deve dependency:poetry add -D kedro==0.16.1
kedro
is installed successfully:poetry show | grep kedro
kedro
CLI:kedro -V
Expected Result
Tell us what should happen.
Actual Result
Your Environment
Include as many relevant details about the environment in which you experienced the bug:
pip show kedro
orkedro -V
):kedro==0.16.1
python -V
): Python 3.8.2The text was updated successfully, but these errors were encountered: