Bump to v2.0.9

This release adds support for Python 3.7.

Previously we didn't allow that version because python-client had problems with
it, since arguments were named after keywords newly introduced in 3.7.

Fixed since of https://github.com/neovim/python-client/pull/274
pull/95/head v2.0.9
Marco Hinz 6 years ago
parent f7d0d434c5
commit 590bbd941b
No known key found for this signature in database
GPG Key ID: 1C980A1B657B4A4F

@ -13,13 +13,13 @@ setup(
url = 'https://github.com/mhinz/neovim-remote',
description = 'Control nvim processes using "nvr" commandline tool',
long_description = long_description,
python_requires = '>=3.4, <3.8',
python_requires = '>=3.4',
install_requires = ['neovim>=0.2.3', 'psutil', 'setuptools'],
entry_points = {
'console_scripts': ['nvr = nvr.nvr:main']
},
packages = ['nvr'],
version = '2.0.8',
version = '2.0.9',
license = 'MIT',
keywords = 'neovim nvim nvr remote helper',
classifiers = [

Loading…
Cancel
Save