2019-08-06 11:47:24 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.11
Version 2.0.11:
- Use functools.wrap to preserve leave_module info
|
2019-07-08 09:41:44 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0.10
Version 2.0.10:
- Suppress no-member for ManyToManyField.
- Fix UnboundLocalError with ForeignKey(to=).
|
2019-04-27 11:35:29 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0.9
Version 2.0.9:
- Fix UnboundLocalError: local variable 'key_cls' referenced before assignment
for cases when models is a python package, the to argument is a string
that is used in this pattern app.Model and also there is some other
bool const like null=True right after to.
- Don't crash if ForeignKey field doesn't have keyword arguments
|
2019-04-25 07:14:13 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.8
Version 2.0.8:
- Support recursive (self) ForeignKey relations.
Version 2.0.7:
- Fixed AstroidImportError for DecimalField.
- Add load_configuration() in pylint_django/__init__.py.
- Support ForeignKey relations with to keyword.
|
2019-02-28 10:24:59 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.6
Version 2.0.6:
- Updating dependency version of pylint-plugin-utils as pylint 2.3 release
was not compatible
- Improvements to tox.ini
- Add support for new load_configuration hook of pylint
- 'urlpatterns' no longer reported as an invalid constant name
|
2018-12-18 12:50:34 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.5
Version 2.0.5:
Bumping the version number because there's been a mix-up between
GitHub tags and the versions pushed to PyPI for 2.0.3 and 2.0.4.
|
2018-11-27 17:22:41 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0.4
2.0.4:
Unknown changes
2.0.3:
Fixing compatability between ranges of astroid (2.0.4 -> 2.1) and pylint \
(2.1.1 -> 2.2)
|
2018-08-27 13:18:35 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
py-pylint-django: 2.0.2
Version 2.0.2:
Suppress false-positive no-self-argument in factory.post_generation.
|
2018-08-24 20:31:06 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0.1
Version 2.0.1:
Enable testing with Django 2.1
Add test for Model.objects.get_or_create().
Add test for objects.exclude().
Fix Instance of 'Model' has no 'id' member (no-member), fix Class \
'UserCreationForm' has no 'declared_fields' member.
Fix for Instance of 'ManyToManyField' has no 'add' member.
Add test & fix for unused arguments on class based views
|
2018-08-07 12:04:04 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0
Version 2.0:
Requires pylint >= 2.0 which doesn’t support Python 2 anymore!
Add modelform-uses-unicode check to flag dangerous use of the exclude attribute \
in ModelForm.Meta
|