-
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
Implement PEP 376 REQUESTED #8026
Conversation
pip/src/pip/_internal/resolution/legacy/resolver.py Lines 196 to 197 in 62c822d
What I don't understand is why Can anyone shed some light on this matter? |
8176019
to
8bc9185
Compare
So I set |
I think the original intention of These meanings don’t really matter for Note 1: The method’s only caller is |
@uranusjr thanks for the analysis. Actually it does matter though, because constraints are added first in the requirements set and then updated with |
I don't see any particular reason to "rush" this for pip 20.1; so I'm gonna say this isn't gonna be on the pip 20.1 train. |
@sbidoul Thanks, it definitely makes much more sense to change the meaning of Maybe we should also take this chance to change the attribute name (maybe to something like |
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 |
src/pip/_internal/cli/req_command.py
Outdated
@@ -310,15 +310,15 @@ def get_requirements( | |||
parsed_req, | |||
isolated=options.isolated_mode, | |||
) | |||
req_to_add.is_direct = True | |||
req_to_add.user_supplied = False |
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.
IIUC, this is intentional, to avoid constraint = True and user_supplied = True, correct?
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.
Yes that's because the (legacy) resolver sometimes flips the constraint flag to False and then we would have something that is merely a constraints that has the REQUESTED file.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
I rebased. The new tests for REQUESTED fail with the new resolver, though. Could it be it loses the |
This comment has been minimized.
This comment has been minimized.
179d30d
to
5d5fc74
Compare
Now test pass with the new resolver too. This should be good to go now. |
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.
I'm still not convinced of the value of the REQUESTED
file in the first place, but whatever, it's part of the PEP so that's fine.
Other than a couple of small style nits, this LGTM.
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 |
I rebased to handle the conflict following the parent -> template renaming. I guess this is good to go, if still green. |
tests/unit/test_wheel.py
Outdated
@@ -278,7 +278,7 @@ def test_std_install(self, data, tmpdir): | |||
scheme=self.scheme, | |||
req_description=str(self.req), | |||
) | |||
self.assert_installed(0o644) | |||
self.assert_installed() |
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.
Nit, I would favour reverting this since the implicit 0o644
is not obvious IMO.
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.
@uranusjr I think it reads better with the default, since here (as well as in the new test added in this PR) we don't want to test permissions. Only in the specific test that checks for permission, we pass a specific expected_permissions.
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.
I’m not following. The new implementation still implicitly checks the permission against 0o644
, doesn’t it? The proposed change seems to make the fact less obviously than it was to me.
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.
Ok I reverted that bit.
Thanks for doing this @sbidoul! ^>^ |
closes #7811
closes #8242
TODO