From b6d3373c345302685c2630d12cf681a465bb61ba Mon Sep 17 00:00:00 2001 From: Eero Ruohola Date: Tue, 7 Sep 2021 12:01:21 +0300 Subject: [PATCH] Add `typing-extension` as a direct dependency of `django-stubs-ext` (#707) Needed, because `django-stubs-ext` generally has to specified as a production dependency (to use the monkey patching). `django-stubs` does have `typing-extensions` as a dependency, but it is often used only as a dev dependency as it has not runtime functionality. Resolves: https://github.com/typeddjango/django-stubs/issues/702 --- django_stubs_ext/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django_stubs_ext/setup.py b/django_stubs_ext/setup.py index 07bfe5a..fbaf3a1 100644 --- a/django_stubs_ext/setup.py +++ b/django_stubs_ext/setup.py @@ -7,6 +7,7 @@ with open("README.md") as f: dependencies = [ "django", + "typing-extensions", ] setup(