From 937646798a84b71ec71d398608f8dc3de2b31b1f Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Wed, 16 Feb 2022 21:56:52 -0500 Subject: [PATCH] Add django-debug-toolbar dev dependency --- pdm.lock | 16 +++++++++++++++- pyproject.toml | 3 +++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/pdm.lock b/pdm.lock index b6f17f3..bd27f30 100644 --- a/pdm.lock +++ b/pdm.lock @@ -89,6 +89,16 @@ dependencies = [ "python-ldap>=3.1", ] +[[package]] +name = "django-debug-toolbar" +version = "3.2.4" +requires_python = ">=3.6" +summary = "A configurable set of panels that display various debug information about the current request/response." +dependencies = [ + "Django>=2.2", + "sqlparse>=0.2.0", +] + [[package]] name = "django-markdownx" version = "4.0.0b1" @@ -367,7 +377,7 @@ summary = "Backport of pathlib-compatible object wrapper for zip files" [metadata] lock_version = "3.1" -content_hash = "sha256:9606b77f38f89e79791cc6d6f2012d127b0bc341df22650a599a25d03c470ec9" +content_hash = "sha256:d4a4738da3076a44f675fe88b485eacfa9b0028ee67087d9b1387e546aa7dc56" [metadata.files] "asgiref 3.5.0" = [ @@ -431,6 +441,10 @@ content_hash = "sha256:9606b77f38f89e79791cc6d6f2012d127b0bc341df22650a599a25d03 {file = "django_auth_ldap-4.0.0-py3-none-any.whl", hash = "sha256:94119c94981809124d3dc4bed974f71c7a980666896df626f556a88a5fe0b59c"}, {file = "django-auth-ldap-4.0.0.tar.gz", hash = "sha256:276f79e624ce083ce13f161387f65ff1c0efe83ef8a42f2b9830d43317b15239"}, ] +"django-debug-toolbar 3.2.4" = [ + {file = "django_debug_toolbar-3.2.4-py3-none-any.whl", hash = "sha256:6b633b6cfee24f232d73569870f19aa86c819d750e7f3e833f2344a9eb4b4409"}, + {file = "django-debug-toolbar-3.2.4.tar.gz", hash = "sha256:644bbd5c428d3283aa9115722471769cac1bec189edf3a0c855fd8ff870375a9"}, +] "django-markdownx 4.0.0b1" = [ {file = "django_markdownx-4.0.0b1-py2.py3-none-any.whl", hash = "sha256:e862ddc3e0aa8a2d6bb297fcf115a35b36b874ea5f07463577f1b34aa5073c3e"}, {file = "django-markdownx-4.0.0b1.tar.gz", hash = "sha256:4f0ee12c38a9aeab9f8da0588ca169ec32c4dad84fc90dc4e9f56481b5de3473"}, diff --git a/pyproject.toml b/pyproject.toml index d22a0ae..b6349de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,9 @@ lint = [ "black~=22.1", "djlint~=0.7", ] +debug = [ + "django-debug-toolbar~=3.2", +] [tool.pdm.scripts] start = "./manage.py runserver"