File tree Expand file tree Collapse file tree 2 files changed +5
-14
lines changed Expand file tree Collapse file tree 2 files changed +5
-14
lines changed Original file line number Diff line number Diff line change 23
23
Add support for django.contrib.postgres.fields and UUIDField (Villiers Strauss)
24
24
* Stop testing with older Django versions. Currently testing with Django 1.11.x and 2.0
25
25
* 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 )
27
29
28
30
## Version 0.7.4
29
31
* [ #88 ] ( https://github.com/landscapeio/pylint-django/pull/88 ) Fixed builds with Django 1.10 (thanks to [ federicobond] ( https://github.com/federicobond ) )
Original file line number Diff line number Diff line change 32
32
33
33
34
34
_install_requires = [
35
- 'pylint-plugin-utils>=0.2.1'
35
+ 'pylint-plugin-utils>=0.2.1' ,
36
+ 'pylint>=1.8'
36
37
]
37
38
38
39
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
-
51
40
setup (
52
41
name = 'pylint-django' ,
53
42
url = 'https://github.com/landscapeio/pylint-django' ,
You can’t perform that action at this time.
0 commit comments