-vvv option).
I have been having issues when trying to use poetry in general when using python 3.7.4 and any of the poetry versions mentioned. Whenever I try to run poetry I get the following error:
ImportError: cannot import name 'ConsoleEvents' from 'clikit.api.event' (/home/carlos/sandbox/python_stuff/poetry_error/.env/lib/python3.7/site-packages/clikit/api/event/__init__.py).
But the error is not present in versions 1.0.0a0 nor in version 1.0.0b3.
python -m venv venvsource venv/bin/activatepip install poetry==1.0.0b2poetrySame here. I had to pin cleo to 0.7.5 as a workaround.
https://gitlab.com/dalibo/dramatiq-pg/commit/51682b5097a8ddd3445eb9c8d15e73c08601c367
You should use the 1.0.0b3 version which properly sets the clikit dependency and fixes the issue.
If you absolutely need to use a previous prerelease then downgrading cleo like @bersace mentioned should work as a temporary fix.
Most helpful comment
You should use the
1.0.0b3version which properly sets theclikitdependency and fixes the issue.If you absolutely need to use a previous prerelease then downgrading
cleolike @bersace mentioned should work as a temporary fix.