From 630c4e17cc2de04290c8426a87c7c7ce8228c266 Mon Sep 17 00:00:00 2001 From: sco1 Date: Sun, 20 Oct 2019 18:04:06 -0400 Subject: Update dependency pinning --- Pipfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Pipfile') diff --git a/Pipfile b/Pipfile index c7d0d766..f136a328 100644 --- a/Pipfile +++ b/Pipfile @@ -4,7 +4,7 @@ url = "https://pypi.org/simple" verify_ssl = true [packages] -django = "~=2.2" +django = "~=2.2.0" django-crispy-forms = "~=1.7.2" django-environ = "~=0.4.5" django-filter = "~=2.1.0" @@ -26,8 +26,8 @@ django-allauth = "~=0.40" [dev-packages] coverage = "~=4.5.3" flake8 = "~=3.7" -flake8-annotations = "~=1.0" -flake8-bandit = "==1.0.2" +flake8-annotations = "~=1.1" +flake8-bandit = "~=2.1" flake8-bugbear = "~=19.8" flake8-docstrings = "~=1.4" flake8-import-order = "~=0.18" -- cgit v1.2.3 From de9504a8d5645a803e7b6d36a7ea9364f327d949 Mon Sep 17 00:00:00 2001 From: Akarys42 Date: Mon, 11 Nov 2019 19:38:42 +0100 Subject: Add pipenv run start command --- Pipfile | 1 + 1 file changed, 1 insertion(+) (limited to 'Pipfile') diff --git a/Pipfile b/Pipfile index f136a328..81a64634 100644 --- a/Pipfile +++ b/Pipfile @@ -43,6 +43,7 @@ unittest-xml-reporting = "~=2.5.1" python_version = "3.7" [scripts] +start = "python manage.py run" makemigrations = "python manage.py makemigrations" django_shell = "python manage.py shell" test = "coverage run manage.py test" -- cgit v1.2.3 From 6fe95330f9a9a2ab325b507a3e257bb39b75c5bf Mon Sep 17 00:00:00 2001 From: Matteo Bertucci Date: Tue, 12 Nov 2019 08:08:55 +0100 Subject: Add the `--debug` flag to the start command --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Pipfile') diff --git a/Pipfile b/Pipfile index 81a64634..cb5776e0 100644 --- a/Pipfile +++ b/Pipfile @@ -43,7 +43,7 @@ unittest-xml-reporting = "~=2.5.1" python_version = "3.7" [scripts] -start = "python manage.py run" +start = "python manage.py run --debug" makemigrations = "python manage.py makemigrations" django_shell = "python manage.py shell" test = "coverage run manage.py test" -- cgit v1.2.3