From 09950233e77c2ec02757bab9997f63c52cdc7dce Mon Sep 17 00:00:00 2001 From: ANtlord Date: Sat, 18 Apr 2020 18:36:04 +0300 Subject: [PATCH] Django is designated in test dependencies. --- jedi/plugins/django.py | 3 +++ setup.py | 1 + 2 files changed, 4 insertions(+) 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',