We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb479ff commit 7dbd812Copy full SHA for 7dbd812
setup.py
@@ -12,13 +12,9 @@
12
'backports.functools_lru_cache; python_version<"3.2"',
13
'jedi>=0.17.0,<0.18.0',
14
'python-jsonrpc-server>=0.4.0',
15
- 'pluggy']
16
-
17
-if sys.version_info[0] == 2:
18
- install_requires.append('ujson<=2.0.3; platform_system!="Windows"')
19
-else:
20
- install_requires.append('ujson>=3.0.0')
21
+ 'pluggy',
+ 'ujson<=2.0.3 ; platform_system!="Windows" and python_version<"3.0"',
+ 'ujson>=3.0.0 ; python_version>"3"']
22
23
setup(
24
name='python-language-server',
0 commit comments