Skip to content

Commit 5b798ff

Browse files
committed
Bump msgpack version
Signed-off-by: Nilesh Patra <[email protected]>
1 parent d1b81ba commit 5b798ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
long_description=open(README).read(),
1818
package_dir={'fluent': 'fluent'},
1919
packages=['fluent'],
20-
install_requires=['msgpack<1.0.0'],
20+
install_requires=['msgpack>=1.0.0'],
2121
author='Kazuki Ohta',
2222
author_email='[email protected]',
2323
url='https://github.com/fluent/fluent-logger-python',

tests/mockserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def get_received(self):
6868
self._buf.seek(0)
6969
# TODO: have to process string encoding properly. currently we assume
7070
# that all encoding is utf-8.
71-
return list(Unpacker(self._buf, encoding='utf-8'))
71+
return list(Unpacker(self._buf))
7272

7373
def close(self):
7474

0 commit comments

Comments
 (0)