From 39fc433514bb0fcf121be187b873bf2565df74a7 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Thu, 17 Aug 2023 08:41:21 -0700 Subject: [PATCH] python3.pkgs.jedi: 0.18.2 -> 0.19.0 --- pkgs/development/python-modules/jedi/default.nix | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/jedi/default.nix b/pkgs/development/python-modules/jedi/default.nix index d12691c177f0..5f802767c83a 100644 --- a/pkgs/development/python-modules/jedi/default.nix +++ b/pkgs/development/python-modules/jedi/default.nix @@ -1,7 +1,6 @@ { lib , stdenv , buildPythonPackage -, pythonAtLeast , pythonOlder , fetchFromGitHub , attrs @@ -12,7 +11,7 @@ buildPythonPackage rec { pname = "jedi"; - version = "0.18.2"; + version = "0.19.0"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -21,7 +20,7 @@ buildPythonPackage rec { owner = "davidhalter"; repo = "jedi"; rev = "v${version}"; - hash = "sha256-hNRmUFpRzVKJQAtfsSNV4jeTR8vVj1+mGBIPO6tUGto="; + hash = "sha256-Hw0+KQkB9ICWbBJDQQmHyKngzJlJ8e3wlpe4aSrlkvo="; fetchSubmodules = true; }; @@ -43,16 +42,6 @@ buildPythonPackage rec { ] ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [ # AssertionError: assert 'foo' in ['setup'] "test_init_extension_module" - ] ++ lib.optionals (pythonAtLeast "3.11") [ - # disabled until 3.11 is added to _SUPPORTED_PYTHONS in jedi/api/environment.py - "test_find_system_environments" - - # disabled until https://github.com/davidhalter/jedi/issues/1858 is resolved - "test_interpreter" - "test_scanning_venvs" - "test_create_environment_venv_path" - "test_create_environment_executable" - "test_venv_and_pths" ]; meta = with lib; {