Add django-debug-toolbar dev dependency

This commit is contained in:
Adam Goldsmith 2022-02-16 21:56:52 -05:00
parent 55bccb930f
commit 937646798a
2 changed files with 18 additions and 1 deletions

View File

@ -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"},

View File

@ -44,6 +44,9 @@ lint = [
"black~=22.1",
"djlint~=0.7",
]
debug = [
"django-debug-toolbar~=3.2",
]
[tool.pdm.scripts]
start = "./manage.py runserver"