Skip to content

Commit a0bba2d

Browse files
committed
Revert "Clarify pynvim's dependency on typing-extensions"
The issue with pynvim 0.5.1 not pulling in all its dependencies has been fixed upstream: neovim/pynvim#581
1 parent 3febd14 commit a0bba2d

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/ISSUE_TEMPLATE/new-issue.md

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ assignees: ''
1212
- [ ] Plugin version (`vim -V1 -i NONE -ENsu ~/.vimrc -c ":echo g:cpywrite#version \"\n\"" +q`):
1313

1414
*If applicable, include one of the following:*
15-
- [ ] Output of `pip list | grep requests`:
1615
- [ ] Output of `pip list | grep pynvim` :
1716
- [ ] Output of `gvim --version`:
1817
- [ ] Output of `vim --version`:

README.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,10 @@ Requirements
156156
See if you're supported by entering ``vim --version | grep +python3`` at your
157157
terminal, or start ``vim`` and enter the ``:version`` command
158158

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

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

165164
Installation
166165
============

test/requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pynvim < 0.5 ; python_version < '3.7'
2-
pynvim==0.5.1 ; python_version >= '3.7'
2+
pynvim==0.5.2 ; python_version >= '3.7'
33
pytest==8.3.3 ; python_version >= '3.12'
4-
coverage==7.6.4 ; python_version >= '3.12'
5-
typing-extensions
4+
coverage==7.6.8 ; python_version >= '3.12'
5+
typing-extensions ; python_version < '3.8'

0 commit comments

Comments
 (0)