Features Replace vendored appdirs with platformdirs. (#10202) Support PEP 610 to detect editable installs in pip freeze and pip list. The pip list column output has a new Editable project location column, and the JSON output has a new editable_project_location field. (#10249) pip freeze will now always fallback to reporting the editable project location when it encounters a VCS error while analyzing an editable requirement. Before, it sometimes reported the requirement as non-editable. (#10410) pip show now sorts Requires and Required-By alphabetically. (#10422) Do not raise error when there are no files to remove with pip cache purge/remove. Instead log a warning and continue (to log that we removed 0 files). (#10459) When backtracking during dependency resolution, prefer the dependencies which are involved in the most recent conflict. This can significantly reduce the amount of backtracking required. (#10479) Cache requirement objects, to improve performance reducing reparses of requirement strings. (#10550) Support editable installs for projects that have a pyproject.toml and use a build backend that supports PEP 660. (#8212) When a revision is specified in a Git URL, use git’s partial clone feature to speed up source retrieval. (#9086) Add a --debug flag, to enable a mode that doesn’t log errors and propagates them to the top level instead. This is primarily to aid with 1debugging pip’s crashes. (#9349) If a host is explicitly specified as trusted by the user (via the --trusted-host option), cache HTTP responses from it in addition to HTTPS ones. (#9498) Signed-off-by: Wang Mingyu --- .../python/{python3-pip_21.2.4.bb => python3-pip_21.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-pip_21.2.4.bb => python3-pip_21.3.bb} (89%) diff --git a/meta/recipes-devtools/python/python3-pip_21.2.4.bb b/meta/recipes-devtools/python/python3-pip_21.3.bb similarity index 89% rename from meta/recipes-devtools/python/python3-pip_21.2.4.bb rename to meta/recipes-devtools/python/python3-pip_21.3.bb index 1f0f707f4b..924a564f62 100644 --- a/meta/recipes-devtools/python/python3-pip_21.2.4.bb +++ b/meta/recipes-devtools/python/python3-pip_21.3.bb @@ -10,7 +10,7 @@ inherit pypi distutils3 SRC_URI += "file://0001-change-shebang-to-python3.patch" -SRC_URI[sha256sum] = "0eb8a1516c3d138ae8689c0c1a60fde7143310832f9dc77e11d8a4bc62de193b" +SRC_URI[sha256sum] = "741a61baab1dbce2d8ca415effa48a2b6a964564f81a9f4f1fce4c433346c034" do_install:append() { # Install as pip3 and leave pip2 as default -- 2.25.1