Skip to content

Commit

Permalink
Revert "Clarify pynvim's dependency on typing-extensions"
Browse files Browse the repository at this point in the history
The issue with pynvim 0.5.1 not pulling in all its dependencies has
been fixed upstream: neovim/pynvim#581
  • Loading branch information
rdipardo committed Nov 30, 2024
1 parent 3febd14 commit a0bba2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/new-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ assignees: ''
- [ ] Plugin version (`vim -V1 -i NONE -ENsu ~/.vimrc -c ":echo g:cpywrite#version \"\n\"" +q`):

*If applicable, include one of the following:*
- [ ] Output of `pip list | grep requests`:
- [ ] Output of `pip list | grep pynvim` :
- [ ] Output of `gvim --version`:
- [ ] Output of `vim --version`:
Expand Down
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,10 @@ Requirements
See if you're supported by entering ``vim --version | grep +python3`` at your
terminal, or start ``vim`` and enter the ``:version`` command

* Neovim with the `pynvim`_ and `typing-extensions`_ modules in your ``$PYTHONPATH``. Start ``nvim``
* Neovim with the `pynvim`_ module in your ``$PYTHONPATH``. Start ``nvim``
and enter ``:help provider-python`` for more information

.. _pynvim: https://github.com/neovim/pynvim
.. _typing-extensions: https://pypi.org/project/typing-extensions

Installation
============
Expand Down
6 changes: 3 additions & 3 deletions test/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pynvim < 0.5 ; python_version < '3.7'
pynvim==0.5.1 ; python_version >= '3.7'
pynvim==0.5.2 ; python_version >= '3.7'
pytest==8.3.3 ; python_version >= '3.12'
coverage==7.6.4 ; python_version >= '3.12'
typing-extensions
coverage==7.6.8 ; python_version >= '3.12'
typing-extensions ; python_version < '3.8'

0 comments on commit a0bba2d

Please sign in to comment.