Wrong return value of a Link.is_artifact for git+user@hostname editable packages
See original GitHub issueA Link.is_artifact
returns True
for URLs like git+user@hostname/repo.git
which is probably a bug, see:
https://github.com/pypa/pip/blob/04f1e70427fd392e1a68c13174816b1b21f48baa/src/pip/_internal/models/link.py#L160-L161
That’s because a Link.scheme
returns an empty string for git+user@...
url, since there is no the explicit scheme (which is ssh://
). It may cause potential bugs. For example:
https://github.com/pypa/pip/blob/04f1e70427fd392e1a68c13174816b1b21f48baa/src/pip/_internal/operations/prepare.py#L350-L353
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (11 by maintainers)
Top Results From Across the Web
npm Registry - JFrog - JFrog Documentation
Set the Package Type to npm and the Repository Key value. Specify the URL to the remote registry in the URL field. Click...
Read more >Error when deploying an artifact in Nexus - Stack Overflow
A couple things I can think of: user credentials are wrong; url to server is wrong; user does not have access to the...
Read more >schema.go - Sourcegraph
See the AWS CodeCommit documentation on Git credentials for CodeCommit: ... is a URL query string with parameters that filter the list of...
Read more >Diff - jgit/jgit - Eclipse Git repositories
Merge branch 'stable-5.11' into stable-5.12 * stable-5.11: FS: debug logging only if system config file cannot be found Change-Id: ...
Read more >Yocto Project Reference Manual
Shortened Git SRCREV Values; 4.4.7. IMAGE_FEATURES; 4.4.8. /run; 4.4.9. Removal of Package Manager Database Within Image Recipes; 4.4.10.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Closing as we propose to remove the
git+git@
form in #7554.I made the PR to deprecate
git+git@
: #7543