Fix crash if model from same app referenced in RelatedField cannot be resolved (#199)

* do not crash if model from same app refd in ForeignKey cannot be resolved

* bump to 1.2.0
This commit is contained in:
Maxim Kurnikov
2019-10-05 20:00:51 +03:00
committed by GitHub
parent 717be5940f
commit db9ff6aaf6
7 changed files with 69 additions and 11 deletions

View File

@@ -21,14 +21,14 @@ with open('README.md', 'r') as f:
readme = f.read()
dependencies = [
'mypy>=0.730,<0.740',
'mypy>=0.730',
'typing-extensions',
'django',
]
setup(
name="django-stubs",
version="1.1.0",
version="1.2.0",
description='Mypy stubs for Django',
long_description=readme,
long_description_content_type='text/markdown',