prompt-toolkit / python-prompt-toolkit

Library for building powerful interactive command line applications in Python
https://python-prompt-toolkit.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
9.11k stars 718 forks source link

not compatible with Python 3.10 #1687

Closed ssh2003 closed 1 year ago

ssh2003 commented 1 year ago

Python:

python -V
Python 3.10.8

Library version 1.0.14

I have an error:

  File "/Users/sh/test123/lib/python3.10/site-packages/prompt_toolkit-1.0.14-py3.10.egg/prompt_toolkit/styles/from_dict.py", line 9, in <module>
    from collections import Mapping
ImportError: cannot import name 'Mapping' from 'collections' (/usr/local/Cellar/python@3.10/3.10.8/Frameworks/Python.framework/Versions/3.10/lib/python3.10/collections/__init__.py)

If we change line 9 in file prompt_toolkit-1.0.14-py3.10.egg/prompt_toolkit/styles/from_dict.py from: from collections import Mapping to: from collections.abc import Mapping All works fine

ssh2003 commented 1 year ago

Sorry, I use old version