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
This commit is contained in:
Eero Ruohola
2021-09-07 12:01:21 +03:00
committed by GitHub
parent f98330356c
commit b6d3373c34

View File

@@ -7,6 +7,7 @@ with open("README.md") as f:
dependencies = [
"django",
"typing-extensions",
]
setup(