Skip to content

Commit 77b9b73

Browse files
committed
Require pylint>=1.8. Fixes #97, fixes #53
this is needed because of how we run tests and because of many internal updates to pylint itself
1 parent 2193e8b commit 77b9b73

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
Add support for django.contrib.postgres.fields and UUIDField (Villiers Strauss)
2424
* Stop testing with older Django versions. Currently testing with Django 1.11.x and 2.0
2525
* Stop testing on Python 2, no functional changes in the source code though
26-
* Update tests for latest version of pylint (>=1.8)
26+
* Update tests and require latest version of pylint (>=1.8), fixes
27+
[#53](https://github.com/landscapeio/pylint-django/issues/53),
28+
[#97](https://github.com/landscapeio/pylint-django/issues/97)
2729

2830
## Version 0.7.4
2931
* [#88](https://github.com/landscapeio/pylint-django/pull/88) Fixed builds with Django 1.10 (thanks to [federicobond](https://github.com/federicobond))

setup.py

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,11 @@
3232

3333

3434
_install_requires = [
35-
'pylint-plugin-utils>=0.2.1'
35+
'pylint-plugin-utils>=0.2.1',
36+
'pylint>=1.8'
3637
]
3738

3839

39-
if sys.version_info < (2, 7):
40-
# pylint 1.4 dropped support for Python 2.6
41-
_install_requires += [
42-
'pylint>=1.0,<1.4',
43-
'astroid>=1.0,<1.3.0',
44-
'logilab-common>=0.60.0,<0.63',
45-
]
46-
else:
47-
_install_requires += [
48-
'pylint>=1.0',
49-
]
50-
5140
setup(
5241
name='pylint-django',
5342
url='https://github.com/landscapeio/pylint-django',

0 commit comments

Comments
 (0)