diff --git a/CHANGES b/CHANGES index c807aecae..46eeb253f 100644 --- a/CHANGES +++ b/CHANGES @@ -42,6 +42,18 @@ $ pip install --user --upgrade --pre libvcs _Backport from 0.13.3_ +### Cleanup + +- :{issue}`378` Remove duplicate `uses_netloc` scheme for `git+ssh` (this was in cpython since 2.7 / + 3.1 [^git+ssh][^python:bugs:8657]) + +[^git+ssh]: [python/cpython@ead169d] + +[python/cpython@ead169d]: + https://github.com/python/cpython/commit/ead169d3114ed0f1041b5b59ca20293449608c50 + +[^python:bugs:8657]: + ## libvcs 0.13.6 (2022-06-18) ### Development diff --git a/libvcs/projects/git.py b/libvcs/projects/git.py index c991a7b3a..5ff062e6f 100644 --- a/libvcs/projects/git.py +++ b/libvcs/projects/git.py @@ -157,7 +157,7 @@ def convert_pip_url(pip_url: str) -> VCSLocation: class GitProject(BaseProject): bin_name = "git" - schemes = ("git", "git+http", "git+https", "git+ssh", "git+git", "git+file") + schemes = ("git", "git+http", "git+https", "git+git", "git+file") _remotes: GitProjectRemoteDict def __init__(