-
Notifications
You must be signed in to change notification settings - Fork 288
Description
Hey there, I'm super excited about the new version of both prompt_toolkit and ptpython. I just installed the newest versions of both, as well as iPython (pip list shows prompt_toolkit==2.0.5
, ptpython==2.0.1
, ipython==7.0.1
). Upon trying to launch ptpython I get various import errors:
ImportError: cannot import name 'PathCompleter' from 'prompt_toolkit.contrib.completers'
since https://github.com/jonathanslenders/ptpython/blob/6c0b99ea2b4be963b42c1062b2f33880ba30b6d3/ptpython/ipython.py#L14 is still using the old path for PathCompleter
and WordCompleter
, and fixing that raises an issue with https://github.com/jonathanslenders/ptpython/blob/9b61c9941bd4a5dff61c7bbb03172b0a515ee83b/ptpython/ipython.py#L19 since CommandLineInterface
has been removed.
Is there a newer version of this file which supports prompt_toolkit 2.0?