Fix django-filter version

As using `*` currently selects 2.3.0 which requires `django >= 2.2`, which is not compatible with the rest of the Pipfile

`ERROR: ERROR: Could not find a version that matches django<1.12,>=1.11,>=1.11.0,>=2.2`
This commit is contained in:
Lapo Luchini
2020-06-20 19:42:28 +02:00
committed by Ji Qu
parent de0a1fa74b
commit 315dfc2540

View File

@@ -25,6 +25,6 @@ mock = "*"
gunicorn = "*"
djangorestframework = "*"
markdown = "<3.2"
django-filter = "*"
django-filter = "==2.2.0"
coreapi = "*"
psycopg2-binary = "*"