From c698f0554d307c6df078c769b1786f41c96af78c Mon Sep 17 00:00:00 2001 From: Joonatan Partanen Date: Mon, 3 Jul 2023 14:05:18 +0300 Subject: [PATCH 1/2] Add warning about the `MyProject @ git+file` format not working It does not currently work. See https://github.com/pypa/pip/issues/12124. --- docs/html/topics/vcs-support.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/html/topics/vcs-support.md b/docs/html/topics/vcs-support.md index 465d5ecb78c..86190cc3689 100644 --- a/docs/html/topics/vcs-support.md +++ b/docs/html/topics/vcs-support.md @@ -23,6 +23,11 @@ MyProject @ git+file:///home/user/projects/MyProject MyProject @ git+https://git.example.com/MyProject ``` +```{warning} +Currently, the `MyProject @ git+file` format does not work and the fix requires multiple deprecations. +See https://github.com/pypa/pip/issues/12124. +``` + ```{warning} The use of `git`, `git+git`, and `git+http` schemes is discouraged. The former two use [the Git Protocol], which lacks authentication, and HTTP is From ce54553a627ad4a089960545d43bf770a36f6d97 Mon Sep 17 00:00:00 2001 From: Joonatan Partanen Date: Mon, 3 Jul 2023 14:17:12 +0300 Subject: [PATCH 2/2] Add news fragment --- news/12124.doc.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/12124.doc.rst diff --git a/news/12124.doc.rst b/news/12124.doc.rst new file mode 100644 index 00000000000..3657c85300b --- /dev/null +++ b/news/12124.doc.rst @@ -0,0 +1 @@ +Add warning about the ``MyProject @ git+file`` VCS format not working