We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 184e325 + 6e05e41 commit 7bf0935Copy full SHA for 7bf0935
ddtrace/encoding.py
@@ -1,12 +1,12 @@
1
import json
2
-import msgpack
3
import logging
4
5
6
# check msgpack CPP implementation; if the import fails, we're using the
7
# pure Python implementation that is really slow, so the ``Encoder`` should use
8
# a different encoding format
9
try:
+ import msgpack
10
from msgpack._packer import Packer # noqa
11
from msgpack._unpacker import unpack, unpackb, Unpacker # noqa
12
MSGPACK_CPP = True
setup.py
@@ -58,7 +58,6 @@ def run_tests(self):
58
packages=find_packages(exclude=['tests*']),
59
install_requires=[
60
"wrapt",
61
- "msgpack-python",
62
],
63
# plugin tox
64
tests_require=['tox', 'flake8'],
0 commit comments