-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
feat(pip/_internal/*): Use custom raise_for_status method #8189
Conversation
68e624f
to
2620fc8
Compare
This looks good to me! Only a few minor comments. |
2620fc8
to
6052cce
Compare
If the changes are satisfactory, then can we merge this? |
@gutsytechster I think we want to wait until the 20.1 release cycle settles (i.e. hopefully after 20.1.1 is out). |
Hello! I am an automated bot and I have noticed that this pull request is not currently able to be merged. If you are able to either merge the |
6052cce
to
f05f07d
Compare
Hello! I am an automated bot and I have noticed that this pull request is not currently able to be merged. If you are able to either merge the |
f05f07d
to
9bd0391
Compare
0ef0c72
to
4b38cc5
Compare
Hello! I am an automated bot and I have noticed that this pull request is not currently able to be merged. If you are able to either merge the |
@gutsytechster Thanks for the multiple updates on this PR! Would you be willing to update it once more, so that we can go ahead and merge this? Or would you prefer that someone else takes this forward from here? I'd like to get this into pip 20.2 (due this month), but this is certainly not a blocker in any form. |
@pradyunsg sure I'd love to work upon it. However, I currently don't have my system with me. It's been a month now as it's gone for repair. I feel that I should get it in the next few days. If there is no hurry, then I'd want to complete the work. Otherwise, no issue from my side if someone else takes up the PR in case of urgency. |
4b38cc5
to
07e8712
Compare
The failed tests doesn't seem related to the changes. It seems there is some connection issue with some tests. Not really sure though. |
Thanks @gutsytechster! ^>^ |
This inherits the behaviour of
requests.Response.raise_for_status
and define our own customraise_for_status
method, with main difference in the final exception raised.Towards #5380