-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Reverse direction of dependencies when determining target packages. #3469
Conversation
That seems right to me. |
@lukesneeringer Does it seem right on the level of "LGTM"? |
for pkg, deps in PKG_DEPENDENCIES.items(): | ||
for dep in deps: | ||
REVERSE_DEPS.setdefault(dep, set()).add(pkg) | ||
del pkg, deps |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@dhermes Yes, that was intended to be an approval. |
Fixes #3466.
@lukesneeringer PTAL, I think this is the right move, but I may have a case of temporary
insanintyinsanity misunderstanding the existing behavior.