Skip to content

Commit

Permalink
Merge branch 'develop' to get fix for py2 installs including docs gen…
Browse files Browse the repository at this point in the history
…eration
  • Loading branch information
carlio committed Nov 22, 2018
2 parents a7f56d1 + b6f4d74 commit 1876090
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

_INSTALL_REQUIRES = [
'pylint-plugin-utils>=0.2.6',
'pylint-django==2.0.2',
'pylint-celery==0.3',
'pylint-flask==0.5',
'requirements-detector>=0.6',
Expand All @@ -34,9 +33,9 @@
]

if sys.version_info < (3, 0):
_INSTALL_REQUIRES += ['pylint<2']
_INSTALL_REQUIRES += ['pylint<2', 'pylint-django<0.9']
else:
_INSTALL_REQUIRES += ['pylint>=2']
_INSTALL_REQUIRES += ['pylint>=2', 'pylint-django==2.0.2']

_PACKAGE_DATA = {
'prospector': [
Expand Down

0 comments on commit 1876090

Please sign in to comment.