<feed xmlns='http://www.w3.org/2005/Atom'>
<title>neovim/runtime/lua/vim/provider/python.lua, branch master</title>
<subtitle>Vim-fork focused on extensibility and usability</subtitle>
<id>http://git.waynecole.info/neovim/atom?h=master</id>
<link rel='self' href='http://git.waynecole.info/neovim/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.waynecole.info/neovim/'/>
<updated>2026-03-22T13:20:04Z</updated>
<entry>
<title>fix(provider): support python3.14 #38419</title>
<updated>2026-03-22T13:20:04Z</updated>
<author>
<name>Eisuke Kawashima</name>
<email>e.kawaschima+github@gmail.com</email>
</author>
<published>2026-03-22T13:20:04Z</published>
<link rel='alternate' type='text/html' href='http://git.waynecole.info/neovim/commit/?id=51aa64488ddd7599c9e1052846e25cdb10570080'/>
<id>urn:sha1:51aa64488ddd7599c9e1052846e25cdb10570080</id>
<content type='text'>
Co-authored-by: Eisuke Kawashima &lt;e-kwsm@users.noreply.github.com&gt;</content>
</entry>
<entry>
<title>feat(provider): detect venv python via "pynvim-python" tool #35273</title>
<updated>2025-08-16T21:48:08Z</updated>
<author>
<name>Michael Henry</name>
<email>drmikehenry@drmikehenry.com</email>
</author>
<published>2025-08-16T21:48:08Z</published>
<link rel='alternate' type='text/html' href='http://git.waynecole.info/neovim/commit/?id=5f8d4a248a97b7beb26a097811dce92f1b18e260'/>
<id>urn:sha1:5f8d4a248a97b7beb26a097811dce92f1b18e260</id>
<content type='text'>
Problem:
Detection of the pynvim module is currently done by finding the first
Python interpreter in the `PATH` and checking if it can import pynvim.
This has several problems:
- Activation of an unrelated Python virtual environment will break
  automatic detection, unless pynvim is also installed in that
  environment.
- Installing pynvim to the expected location is difficult. User
  installation into the system-wide or user-wide Python site area is now
  deprecated.  On Ubuntu 24.04 with Python 3.12, for example, the
  command `pip install --user pynvim` now fails with the error message
  `error: externally-managed-environment`.
- Users may create a dedicated virtual environment in which to install
  pynvim, but Nvim won't detect it; instead, they must either activate
  it before launching Nvim (which interferes with the user of other
  virtual environments) or else hard-code the variable
  `g:python3_host_prog` in their `init.vim` to the path of the correct
  Python interpreter.  Neither option is desirable.

Solution:
Expose pynvim's Python interpreter on the `PATH` under the
name `pynvim-python`.  Typical user-flow:

1. User installs either uv or pipx.
2. User installs pynvim via:
   ```
   uv tool install --upgrade pynvim
   # Or:
   pipx install --upgrade pynvim
   ```

With corresponding changes in pynvim https://github.com/neovim/pynvim/issues/593
the above user-flow is all that's needed for Nvim to detect the
installed location of pynvim, even if an unrelated Python virtual
environments is activated.  It uses standard Python tooling to automate
the necessary creation of a Python virtual environment for pyenv and the
publication of `pynvim-python` to a directory on `PATH`.</content>
</entry>
<entry>
<title>fix(provider)!: drop Python 3.7, 3.8 support #33088</title>
<updated>2025-03-28T11:49:10Z</updated>
<author>
<name>v1nh1shungry</name>
<email>v1nh1shungry@outlook.com</email>
</author>
<published>2025-03-28T11:49:10Z</published>
<link rel='alternate' type='text/html' href='http://git.waynecole.info/neovim/commit/?id=ade58885c478a46c1299f23f17a5c40e2960b6ad'/>
<id>urn:sha1:ade58885c478a46c1299f23f17a5c40e2960b6ad</id>
<content type='text'>
Problem: #33022 didn't update `min_version` to 3.9, therefore Python 3.7
and 3.8 are still available.

Solution: Update `min_version` to 3.9.</content>
</entry>
<entry>
<title>feat(provider/python)!: add python 3.13, drop 3.7 and 3.8 (EOL) #33022</title>
<updated>2025-03-22T14:20:46Z</updated>
<author>
<name>Eisuke Kawashima</name>
<email>e.kawaschima+github@gmail.com</email>
</author>
<published>2025-03-22T14:20:46Z</published>
<link rel='alternate' type='text/html' href='http://git.waynecole.info/neovim/commit/?id=4d9a1b9852cab0574a47fb9e149b6f7164daafd3'/>
<id>urn:sha1:4d9a1b9852cab0574a47fb9e149b6f7164daafd3</id>
<content type='text'>
https://devguide.python.org/versions/

Co-authored-by: Eisuke Kawashima &lt;e-kwsm@users.noreply.github.com&gt;</content>
</entry>
<entry>
<title>refactor: rewrite ruby provider in lua</title>
<updated>2024-01-24T18:26:53Z</updated>
<author>
<name>dundargoc</name>
<email>gocdundar@gmail.com</email>
</author>
<published>2024-01-22T21:07:14Z</published>
<link rel='alternate' type='text/html' href='http://git.waynecole.info/neovim/commit/?id=b280d57db9845359186bfb5167e1559b6184f8d5'/>
<id>urn:sha1:b280d57db9845359186bfb5167e1559b6184f8d5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>refactor: rewrite python provider in lua</title>
<updated>2024-01-22T21:36:40Z</updated>
<author>
<name>dundargoc</name>
<email>gocdundar@gmail.com</email>
</author>
<published>2024-01-07T12:05:03Z</published>
<link rel='alternate' type='text/html' href='http://git.waynecole.info/neovim/commit/?id=eb5d15e3838f53e2fcd25989c88db87458e9f984'/>
<id>urn:sha1:eb5d15e3838f53e2fcd25989c88db87458e9f984</id>
<content type='text'>
</content>
</entry>
</feed>
