File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,6 @@ Here are the supported forms::
409
409
[-e] git+ssh://git.example.com/MyProject#egg=MyProject
410
410
[-e] git+git://git.example.com/MyProject#egg=MyProject
411
411
[-e] git+file:///home/user/projects/MyProject#egg=MyProject
412
- -e git+git@git.example.com:MyProject#egg=MyProject
413
412
414
413
Passing a branch name, a commit hash, a tag name or a git ref is possible like so::
415
414
Original file line number Diff line number Diff line change 30
30
from pip ._internal .operations .install .wheel import install_wheel
31
31
from pip ._internal .pyproject import load_pyproject_toml , make_pyproject_path
32
32
from pip ._internal .req .req_uninstall import UninstallPathSet
33
+ from pip ._internal .utils .deprecation import deprecated
33
34
from pip ._internal .utils .hashes import Hashes
34
35
from pip ._internal .utils .logging import indent_log
35
36
from pip ._internal .utils .marker_files import (
@@ -633,6 +634,18 @@ def update_editable(self, obtain=True):
633
634
vc_type , url = self .link .url .split ('+' , 1 )
634
635
vcs_backend = vcs .get_backend (vc_type )
635
636
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" )
636
649
hidden_url = hide_url (self .link .url )
637
650
if obtain :
638
651
vcs_backend .obtain (self .source_dir , url = hidden_url )
You can’t perform that action at this time.
0 commit comments