Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scrapinghub/hubstorage/serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def jldecode(lineiterable):


def mpdecode(iterable):
unpacker = Unpacker(encoding='utf8')
unpacker = Unpacker()
for chunk in iterable:
unpacker.feed(chunk)
# Each chunk can have none or many objects,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
version = f.read().decode('ascii').strip()

is_pypy = '__pypy__' in sys.builtin_module_names
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'

setup(
name='scrapinghub',
Expand Down