Skip to content

Commit 8407078

Browse files
committed
Deprecate git+git@ form of VCS url
1 parent 68e49b9 commit 8407078

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

docs/html/reference/pip_install.rst

-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,6 @@ Here are the supported forms::
409409
[-e] git+ssh://git.example.com/MyProject#egg=MyProject
410410
[-e] git+git://git.example.com/MyProject#egg=MyProject
411411
[-e] git+file:///home/user/projects/MyProject#egg=MyProject
412-
-e git+git@git.example.com:MyProject#egg=MyProject
413412

414413
Passing a branch name, a commit hash, a tag name or a git ref is possible like so::
415414

src/pip/_internal/req/req_install.py

+13
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
from pip._internal.operations.install.wheel import install_wheel
3131
from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path
3232
from pip._internal.req.req_uninstall import UninstallPathSet
33+
from pip._internal.utils.deprecation import deprecated
3334
from pip._internal.utils.hashes import Hashes
3435
from pip._internal.utils.logging import indent_log
3536
from pip._internal.utils.marker_files import (
@@ -633,6 +634,18 @@ def update_editable(self, obtain=True):
633634
vc_type, url = self.link.url.split('+', 1)
634635
vcs_backend = vcs.get_backend(vc_type)
635636
if vcs_backend:
637+
if not self.link.is_vcs:
638+
reason = (
639+
"This form of VCS URL is being deprecated: {}."
640+
).format(
641+
self.link.url
642+
)
643+
replacement = None
644+
if self.link.url.startswith("git+git@"):
645+
replacement = (
646+
"git+git:// or git+ssh://"
647+
)
648+
deprecated(reason, replacement, gone_in="21.0")
636649
hidden_url = hide_url(self.link.url)
637650
if obtain:
638651
vcs_backend.obtain(self.source_dir, url=hidden_url)

0 commit comments

Comments
 (0)