File tree Expand file tree Collapse file tree 5 files changed +164
-20
lines changed Expand file tree Collapse file tree 5 files changed +164
-20
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ update: env
4646
4747.PHONY : format
4848format : env
49- $(shell . .venv/bin/activate && isort -rc ./)
49+ $(shell . .venv/bin/activate && isort ./)
5050 $(shell . .venv/bin/activate && black ./)
5151
5252
Original file line number Diff line number Diff line change 22"""Django's command-line utility for administrative tasks."""
33import os
44import sys
5+ from ddtrace import patch_all
6+
7+
8+ patch_all ()
59
610
711def main ():
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ django = "*"
2323python-dotenv = " *"
2424mysqlclient = " *"
2525django-environ = " *"
26+ ddtrace = " ^0.44.0"
2627
2728[tool .poetry .dev-dependencies ]
2829pytest = " *"
Original file line number Diff line number Diff line change 11asgiref == 3.3.1 ; python_version >= "3.6"
2+ ddtrace == 0.44.0 ; (python_version >= "2.7" and python_full_version < "3.0.0" ) or (python_full_version >= "3.5.0" )
23django-environ == 0.4.5
3- django == 3.1.3 ; python_version >= "3.6"
4+ django == 3.1.4 ; python_version >= "3.6"
5+ intervaltree == 3.1.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
46mysqlclient == 2.0.1 ; python_version >= "3.5"
7+ protobuf == 3.14.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
58python-dotenv == 0.15.0
69pytz == 2020.4 ; python_version >= "3.6"
10+ six == 1.15.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
11+ sortedcontainers == 2.3.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
712sqlparse == 0.4.1 ; python_version >= "3.6"
13+ tenacity == 6.2.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
You can’t perform that action at this time.
0 commit comments