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.
1 parent d1b81ba commit 5b798ffCopy full SHA for 5b798ff
setup.py
@@ -17,7 +17,7 @@
17
long_description=open(README).read(),
18
package_dir={'fluent': 'fluent'},
19
packages=['fluent'],
20
- install_requires=['msgpack<1.0.0'],
+ install_requires=['msgpack>=1.0.0'],
21
author='Kazuki Ohta',
22
author_email='[email protected]',
23
url='https://github.com/fluent/fluent-logger-python',
tests/mockserver.py
@@ -68,7 +68,7 @@ def get_received(self):
68
self._buf.seek(0)
69
# TODO: have to process string encoding properly. currently we assume
70
# that all encoding is utf-8.
71
- return list(Unpacker(self._buf, encoding='utf-8'))
+ return list(Unpacker(self._buf))
72
73
def close(self):
74
0 commit comments