-
Notifications
You must be signed in to change notification settings - Fork 3
Add prettyprinter as dev package to pipenv #50
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
base: master
Are you sure you want to change the base?
Conversation
| "sha256:d400a9344254803a2368533e4533a4200d21eb7b6b729c173bc38201a74db3f2" | ||
| ], | ||
| "version": "==3.6.2" | ||
| "markers": "python_version <= '3.4'", |
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.
This new "markers" section seems to be newly added to pipenv.
ignacio-chiazzo
left a comment
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 like this addition. 👍
| name = "pypi" | ||
| url = "https://pypi.python.org/simple" | ||
|
|
||
|
|
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.
Who added these blank lines?
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.
Please see the answer here.
| pylint = "*" | ||
| requests = "*" | ||
| beautifulsoup4 = "*" | ||
| "beautifulsoup4" = "*" |
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.
unnecesary "". Can you confirm it was intentionally
Changed the - to "".
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.
Please see the answer here.
|
I will answer here to both of the above questions, @ignacio-chiazzo. This PR content was automatically generated by the command. $ pipenv install --dev prettyprinterI didn't manually edit anything. It is not the first time when I see |
This PR adds the
prettyprinterpackage to pipenv as a dev package.The reason for adding this package is because it can be really useful when inspecting in IPython and debugging in ipdb.
Issues:
FYI, @ignacio-chiazzo.