From e323fb45b1cc9c1ebd6ff18bae5d264a38432857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Mat=C3=ADas=20S=C3=A1nchez=20=28Quique=29?= Date: Mon, 4 May 2020 11:31:00 +0200 Subject: [PATCH] Instalar django-debug-toolbar para desarrollo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Listar dependencias por orden alfabético --- Pipfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Pipfile b/Pipfile index edd93bc..461f6f1 100644 --- a/Pipfile +++ b/Pipfile @@ -4,23 +4,24 @@ url = "https://pypi.org/simple" verify_ssl = true [dev-packages] -pylint = "*" coverage = "*" +django-debug-toolbar = "*" +pylint = "*" rope = "*" [packages] +bleach = "*" django = "==3.0.6" # Remember to re-generate `requirements.txt` -mysqlclient = "*" -social-auth-app-django = "*" -social-auth-core = {extras = ["saml"],version = "*"} -python3-saml = "*" django-annoying = "*" django-crispy-forms = "==1.9.0" django-summernote = "*" django-tables2 = "==2.3.1" django-templated-email = "*" +mysqlclient = "*" pypandoc = "*" -bleach = "*" +python3-saml = "*" +social-auth-app-django = "*" +social-auth-core = {extras = ["saml"],version = "*"} zeep = "*" [requires] -- 2.18.0