-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Protect @
as safe character when cleaning URLs
#6440
Conversation
ccdd1a3
to
2759ffb
Compare
I am not sure about the added test. When I locally run |
It might be because you're missing a path portion. Try something more like-- "git+ssh://example.com/[email protected]#egg=my-package-1.0.201810251140" |
2759ffb
to
f3c33d5
Compare
I think you are right @cjerdonek . Please have a look at the updated change set. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Some comments.
f3c33d5
to
addba30
Compare
Thanks @cjerdonek for the helpful comments! I pushed an updated version of this change set. |
Remote URLs that contain a link to a git repository and a tag reference will have the `@` character converted into `%40`. This is incorrect. Fixes: pypa#6437 Signed-off-by: Nicolas Bock <[email protected]>
addba30
to
265b4e7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great. Thanks for your quick attention to this, @nicolasbock.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Remote URLs that contain a link to a git repository and a tag
reference will have the
@
character converted into%40
. This isincorrect.
Fixes: #6437
Signed-off-by: Nicolas Bock [email protected]