diff --git a/jedi/plugins/django.py b/jedi/plugins/django.py index 03a14c5d..8ebd73b4 100644 --- a/jedi/plugins/django.py +++ b/jedi/plugins/django.py @@ -1,5 +1,8 @@ """ Module is used to infer Django model fields. +Bugs: + - Can't infer User model. + - Can't infer ManyToManyField. """ from jedi.inference.base_value import LazyValueWrapper from jedi.inference.utils import safe_property diff --git a/setup.py b/setup.py index b73fea79..54418153 100755 --- a/setup.py +++ b/setup.py @@ -43,6 +43,7 @@ setup(name='jedi', 'docopt', # coloroma for colored debug output 'colorama', + 'Django', ], 'qa': [ 'flake8==3.7.9',