File tree 5 files changed +164
-20
lines changed
5 files changed +164
-20
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ update: env
46
46
47
47
.PHONY : format
48
48
format : env
49
- $(shell . .venv/bin/activate && isort -rc ./)
49
+ $(shell . .venv/bin/activate && isort ./)
50
50
$(shell . .venv/bin/activate && black ./)
51
51
52
52
Original file line number Diff line number Diff line change 2
2
"""Django's command-line utility for administrative tasks."""
3
3
import os
4
4
import sys
5
+ from ddtrace import patch_all
6
+
7
+
8
+ patch_all ()
5
9
6
10
7
11
def main ():
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ django = "*"
23
23
python-dotenv = " *"
24
24
mysqlclient = " *"
25
25
django-environ = " *"
26
+ ddtrace = " ^0.44.0"
26
27
27
28
[tool .poetry .dev-dependencies ]
28
29
pytest = " *"
Original file line number Diff line number Diff line change 1
1
asgiref == 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" )
2
3
django-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"
4
6
mysqlclient == 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"
5
8
python-dotenv == 0.15.0
6
9
pytz == 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"
7
12
sqlparse == 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