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 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 ) )
Original file line number Diff line number Diff line change 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-
5140setup (
5241 name = 'pylint-django' ,
5342 url = 'https://github.com/landscapeio/pylint-django' ,
You can’t perform that action at this time.
0 commit comments