palantir / python-language-server

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

PR: Fix issues with CIs #894

Closed andfoy closed 3 years ago

andfoy commented 3 years ago

The latest pip dependency solver raised some errors when trying to install the runtime and test dependencies separately via pip install -e .[all], .[test]. This PR fixes this issue by installing both dependency groups simultaneously via pip install -e .[all,test]