Remove psycopg2 from dependencies (#117)

* remove psycopg2 from direct dependencies, only add it in tests

* bump to 1.0.1

* fix mypy
This commit is contained in:
Maxim Kurnikov
2019-07-26 18:39:42 +03:00
committed by GitHub
parent 735b58e9bf
commit 6b21a0476d
3 changed files with 8 additions and 4 deletions

View File

@@ -24,13 +24,11 @@ dependencies = [
'mypy>=0.720,<0.730',
'typing-extensions',
'django',
# depends on psycopg2 because of Postgres' ArrayField support
'psycopg2'
]
setup(
name="django-stubs",
version="1.0.0",
version="1.0.1",
description='Mypy stubs for Django',
long_description=readme,
long_description_content_type='text/markdown',