-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Pin pylint to 1.7.5 and fix docstring styling #3408
Changes from 1 commit
8edf582
63a96d7
4d10f2e
e720959
10fa100
5b240bc
5630fad
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
-r pip.txt | ||
maxcdn | ||
astroid | ||
pylint | ||
# prospector==0.12.6 currently has issues with pydocstyle | ||
prospector==0.12.5 | ||
|
||
# pylint 1.8.0 is having problems: | ||
# File "/home/humitos/.pyenv/versions/2.7.14/envs/pylint/lib/python2.7/site-packages/pylint_django/plugin.py", line 22, in register | ||
# start = name_checker.config.const_rgx.pattern[:-2] | ||
# AttributeError: 'NoneType' object has no attribute 'pattern | ||
pylint==1.7.5 | ||
|
||
prospector | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't prospector also be pinned? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Maybe". Read my comment below in this PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm torn on whether we pin these or not. We are fighting broken testing dependencies at least twice a month now. Pinning does help avoid this, but I don't think there is a strong reason to pin otherwise. |
||
pylint-django | ||
pyflakes |
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 unppined this because I didn't find any error related with
pydocstyle
. Besides, I think the new version works as it should.