Merge pull request #68112 from langston-barrett/pyls-jedi

python updates: parso, jedi, python-language-server
There is a newer jedi existing but it may break pyls
This commit is contained in:
Matthieu Coudron 2019-09-26 19:31:05 +09:00 committed by GitHub
commit 3d1195f162
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "jedi";
version = "0.13.3";
version = "0.14.1";
src = fetchPypi {
inherit pname version;
sha256 = "2bb0603e3506f708e792c7f4ad8fc2a7a9d9c2d292a358fbbd58da531695595b";
sha256 = "0dmgx9c0f7yx897bf13nrp5gbgal192y44y5dhqcvkyklzqm1j2k";
};
postPatch = ''

View file

@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "parso";
version = "0.3.4";
version = "0.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "68406ebd7eafe17f8e40e15a84b56848eccbf27d7c1feb89e93d8fca395706db";
sha256 = "171a9ivhxwsd52h1cgsz40zgzpgzscn7yqb7sdjhy8m1lzj0wsv6";
};
checkInputs = [ pytest ];

View file

@ -21,13 +21,13 @@ in
buildPythonPackage rec {
pname = "python-language-server";
version = "0.28.1";
version = "0.28.3";
src = fetchFromGitHub {
owner = "palantir";
repo = "python-language-server";
rev = version;
sha256 = "0xa0zw7hlfqqa305ic4csgfmlbxhklb5xzx72mfkcz8gcc0f5qwd";
sha256 = "16d8i43r75h0cijggkkmmpnycn29wlbjp63mgg3s4nbrxfa96x2k";
};
# The tests require all the providers, disable otherwise.