From 315dfc2540c97de6d693617b5e30a79c6f139ffc Mon Sep 17 00:00:00 2001 From: Lapo Luchini Date: Sat, 20 Jun 2020 19:42:28 +0200 Subject: [PATCH] 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` --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 646fec2..283d4fd 100644 --- a/Pipfile +++ b/Pipfile @@ -25,6 +25,6 @@ mock = "*" gunicorn = "*" djangorestframework = "*" markdown = "<3.2" -django-filter = "*" +django-filter = "==2.2.0" coreapi = "*" psycopg2-binary = "*"