Skip to content

Commit 1788eef

Browse files
authored
Merge pull request #147 from pardo/master
Bump msgpack version
2 parents ef7c41a + 13915e3 commit 1788eef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scrapinghub/hubstorage/serialization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def jldecode(lineiterable):
2525

2626

2727
def mpdecode(iterable):
28-
unpacker = Unpacker(encoding='utf8')
28+
unpacker = Unpacker()
2929
for chunk in iterable:
3030
unpacker.feed(chunk)
3131
# Each chunk can have none or many objects,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
version = f.read().decode('ascii').strip()
1212

1313
is_pypy = '__pypy__' in sys.builtin_module_names
14-
mpack_required = 'msgpack-pypy>=0.0.2' if is_pypy else 'msgpack>=0.6.1'
14+
mpack_required = 'msgpack-pypy>=0.0.2' if is_pypy else 'msgpack>=1.0.0'
1515

1616
setup(
1717
name='scrapinghub',

0 commit comments

Comments
 (0)