```RuntimeError: Found unexpected keys in 'pyproje...
# questions
a
Copy code
RuntimeError: Found unexpected keys in 'pyproject.toml'. Make sure it only contains the following keys: ['package_name', 'project_name', 'project_version', 
'source_dir'].
Is this probably an error from an older version of poetry before poetry became a popular choice for package manager
j
Kedro does not officially support Poetry yet https://github.com/kedro-org/kedro/issues/1722 some people have managed to make it work but it requires some care. on the other hand, any PEP 621-compliant build backend (setuptools.build_meta, flit-core, pdm-backend) should work
a
Interesting, I've been using poetry with kedro pretty well for awhile now. Good read here on some of the limitations
j
yep, it does work - it's just that we don't officially support it yet
👍 1
a
Def probably explains a few things Ive had to troubleshoot in the past.