Skip to content

Commit

Permalink
Merge pull request #333 from PyCQA/hf-pylint
Browse files Browse the repository at this point in the history
Hotfix for pylint module run
  • Loading branch information
chocoelho committed Jun 12, 2019
2 parents df3baff + 547ae4f commit af00c53
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions prospector/tools/pylint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ def _prospector_configure(self, prospector_config, linter):
# was disabled.
linter.disable(
'locally-disabled') # notification about disabling a message
linter.disable(
'locally-enabled') # notification about enabling a message
linter.enable(
'file-ignored') # notification about disabling an entire file
linter.enable('suppressed-message'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
if sys.version_info < (3, 0):
_INSTALL_REQUIRES += ['pylint<2', 'pylint-django<0.9']
else:
_INSTALL_REQUIRES += ['pylint==2.1.1', 'pylint-django==2.0.9']
_INSTALL_REQUIRES += ['pylint==2.3.1', 'pylint-django==2.0.9']

_PACKAGE_DATA = {
'prospector': [
Expand Down

0 comments on commit af00c53

Please sign in to comment.