palantir / python-language-server

An implementation of the Language Server Protocol for Python
MIT License
2.6k stars 282 forks source link

Fix ujson dep for Python 2 #862

Closed jroitgrund closed 3 years ago

jroitgrund commented 3 years ago

The current logic doesn't seem to work, pip install python-language-server from a python2 environment yields

ERROR: Could not find a version that satisfies the requirement ujson>=3.0.0 (from python-language-server) (from versions: 1.4, 1.6, 1.8, 1.9, 1.15, 1.18, 1.19, 1.21, 1.22, 1.23, 1.30, 1.33, 1.34, 1.35, 2.0.0, 2.0.1, 2.0.2, 2.0.3)
ERROR: No matching distribution found for ujson>=3.0.0 (from python-language-server)

Fixes #863.