Skip to content

Commit 69e223c

Browse files
author
Carl Crowder
committed
Updating pylint-plugin-utils dependency to get compatability with pylint 2.3 release and adding release information for 2.0.6
1 parent 1bc6e6c commit 69e223c

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
dist: xenial
12
language: python
23
python:
34
- 3.5
45
- 3.6
5-
- "3.7-dev"
6+
- 3.7
67
env:
78
# note: latest versions first b/c the top-most is included in new
89
# build stages if not specified

CHANGELOG.rst

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
=========
33

4+
Version 2.0.6 (27 Feb 2019)
5+
---------------------------
6+
7+
- Updating dependency version of pylint-plugin-utils as pylint 2.3 release
8+
was not compatible `#220 <https://github.com/PyCQA/pylint-django/issues/220>`_
9+
- Improvements to tox.ini:
10+
`#217 <https://github.com/PyCQA/pylint-django/issues/217>`_
11+
and `#216 <https://github.com/PyCQA/pylint-django/issues/216>`_ (@aerostitch)
12+
- Add support for new load_configuration hook of pylint
13+
`#214 <https://github.com/PyCQA/pylint-django/issues/214>`_ (@matusvalo)
14+
15+
416
Version 2.0.5 (17 Dec 2018)
517
---------------------------
618

@@ -79,9 +91,9 @@ Version 0.11 (18 April 2018), the TestCon Moscow edition
7991
http responses returning JSON. This includes::
8092

8193
HttpResponse(json.dumps(data))
82-
94+
8395
HttpResponse(data, content_type='application/json')
84-
96+
8597
JsonResponse(data, content_type=...)
8698

8799

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,16 @@
1313
author_email='[email protected]',
1414
description='A Pylint plugin to help Pylint understand the Django web framework',
1515
long_description=LONG_DESCRIPTION,
16-
version='2.0.5',
16+
version='2.0.6',
1717
packages=find_packages(),
1818
include_package_data=True,
1919
install_requires=[
20-
'pylint-plugin-utils>=0.4',
20+
'pylint-plugin-utils>=0.5',
2121
'pylint>=2.0',
2222
],
2323
extras_require={
2424
'with_django': ['Django'],
25-
'for_tests': ['coverage', 'djangorestframework', 'django-model-utils', 'django-tables2',
26-
'factory-boy', 'psycopg2', 'pytest'],
25+
'for_tests': ['django_tables2', 'factory-boy'],
2726
},
2827
license='GPLv2',
2928
classifiers=[
@@ -34,6 +33,7 @@
3433
'Programming Language :: Python :: 3',
3534
'Programming Language :: Python :: 3.5',
3635
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: 3.7',
3737
],
3838
keywords=['pylint', 'django', 'plugin'],
3939
zip_safe=False,

0 commit comments

Comments
 (0)