-
Notifications
You must be signed in to change notification settings - Fork 362
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
Add Pipenv lockfile support (Resolves #71) #66
Add Pipenv lockfile support (Resolves #71) #66
Conversation
Thank you very much for the contribution! CC @G-Rath as well who contributed most of the existing lockfile code. |
@oliverchang @another-rex @newdominic would one of you mind adding "Resolves #71" to the PR description? (I've not the necessary 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.
LGTM!
done! we should start thinking about adding more project contributors early next year. sorry for the hassle till then. |
@inferno-chromium thanks, though you've added it to the PR title when it needs to be in the description for it to count as a link😅 |
Done, forgot that. |
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.
Thank you! Can you also add a test case with a package that doesn't have a version? This can happen if a package is a local path for example.
e.g. This lockfile entry
Co-authored-by: Rex P <106129829+another-rex@users.noreply.github.com>
Done! Also the comment in |
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.
thank you very much!
Sorry for the delay in review -- most of our team was out over the holiday period.
/gcbrun |
@newdominic Looks like there's a minor merge conflict. Would you mind fixing this up? I don't seem to be able to push to your fork branch to do this myself. |
/gcbrun |
LGTM, thank you! |
* Add Pipenv lockfile support * Skip when a package doesn't have a version * Update pkg/lockfile/ecosystems_test.go Co-authored-by: Rex P <106129829+another-rex@users.noreply.github.com> * fix comment Co-authored-by: Rex P <106129829+another-rex@users.noreply.github.com>
* Add Pipenv lockfile support * Skip when a package doesn't have a version * Update pkg/lockfile/ecosystems_test.go Co-authored-by: Rex P <106129829+another-rex@users.noreply.github.com> * fix comment Co-authored-by: Rex P <106129829+another-rex@users.noreply.github.com>
Add support for
Pipenv.lock
. Fixes #71