Attribute pip's code to it's respective authors#58
Closed
aalexanderr wants to merge 4 commits intoaboutcode-org:masterfrom
Closed
Attribute pip's code to it's respective authors#58aalexanderr wants to merge 4 commits intoaboutcode-org:masterfrom
aalexanderr wants to merge 4 commits intoaboutcode-org:masterfrom
Conversation
The code was copied from pip version 20.1.1. Only vcs module and its dependencies were left. Some files from utils module had some unrelated functionality removed to support this cleanup. All MYPY checks were removed as they were unused. Signed-off-by: Alexander Mazuruk <[email protected]>
While all pip's code should've been submitted with license and copyright info, this commit resolves the issue for code mentioned in the commit msg title. Authors were gathered in following way: From pip: https://github.com/pypa/pip.git checked out on: 20.1.1 tag (commit: 8356bc5161e0a9b3054f0e04e12d18feae4c2b46) from repository root, following command was run to get all authors of vcs package: $ git shortlog -s -- src/pip/_internal/vcs/ Signed-off-by: Alexander Mazuruk <[email protected]>
While all pip's code should've been submitted with license and copyright info, this commit resolves the issue for code mentioned in the commit msg title. Authors were gathered in following way: From pip: https://github.com/pypa/pip.git checked out on: 20.1.1 tag (commit: 8356bc5161e0a9b3054f0e04e12d18feae4c2b46) from repository root, following command was run to get all authors of vcs package: $ for f in src/pip/_internal/utils/*; do echo $f; git shortlog -s -- $f; done Signed-off-by: Alexander Mazuruk <[email protected]>
While all pip's code should've been submitted with license and copyright info, this commit resolves the issue for code mentioned in the commit msg title. Authors were gathered in following way: From pip: https://github.com/pypa/pip.git checked out on: 20.1.1 tag (commit: 8356bc5161e0a9b3054f0e04e12d18feae4c2b46) from repository root, following command was run to get all authors of vcs package: $ git shortlog -s -- src/pip/_internal/exceptions.py Signed-off-by: Alexander Mazuruk <[email protected]>
This was referenced Jun 21, 2021
pombredanne
added a commit
that referenced
this pull request
Aug 16, 2021
See also #58 Reported-by: Alexander Mazuruk <[email protected]> Signed-off-by: Philippe Ombredanne <[email protected]>
Contributor
Author
|
will resubmit with updated pip |
pombredanne
pushed a commit
that referenced
this pull request
May 10, 2022
Remove macos 10.14 job from azure-pipelines.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'd like to also note that this repository should be dual-licesed: both MIT and Apache licensed code is used here.
I'm creating this as separate PR, so the readability of successive PRs for review might be improved upon merging previous one.
depends on #57