Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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]: <https://bugs.python.org/issue8657>

## libvcs 0.13.6 (2022-06-18)

### Development
Expand Down
2 changes: 1 addition & 1 deletion libvcs/projects/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__(
Expand Down