You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fresh-installing pynvim on a new environment will fail to import the module due to the lack of typing_extensions (at least in Python 3.9). Thus the package should be listed as a dependency, maybe depending on the python version.
The text was updated successfully, but these errors were encountered:
While I can see that this has been fixed in #581, I don't see why CI hadn't been unable to catch this (before #581 was merged).
EDIT: I got it, the following is still executed during pip install -e., but this dependency is not published to PyPI as the release was made with python >= 3.12. We should make a new release anyway; thanks for reporting.
if sys.version_info < (3, 12):
install_requires.append('typing-extensions>=4.5')
Fresh-installing pynvim on a new environment will fail to import the module due to the lack of
typing_extensions
(at least in Python 3.9). Thus the package should be listed as a dependency, maybe depending on the python version.The text was updated successfully, but these errors were encountered: