We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ef7c41a + 13915e3 commit 1788eefCopy full SHA for 1788eef
scrapinghub/hubstorage/serialization.py
@@ -25,7 +25,7 @@ def jldecode(lineiterable):
25
26
27
def mpdecode(iterable):
28
- unpacker = Unpacker(encoding='utf8')
+ unpacker = Unpacker()
29
for chunk in iterable:
30
unpacker.feed(chunk)
31
# Each chunk can have none or many objects,
setup.py
@@ -11,7 +11,7 @@
11
version = f.read().decode('ascii').strip()
12
13
is_pypy = '__pypy__' in sys.builtin_module_names
14
-mpack_required = 'msgpack-pypy>=0.0.2' if is_pypy else 'msgpack>=0.6.1'
+mpack_required = 'msgpack-pypy>=0.0.2' if is_pypy else 'msgpack>=1.0.0'
15
16
setup(
17
name='scrapinghub',
0 commit comments