1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 01:37:20 +00:00

try to mock msgpack altogether to fix RTD again

it seems that msgpack is a hard depends in archive...
This commit is contained in:
Antoine Beaupré 2015-10-08 17:06:48 -04:00
parent a869ab0702
commit a1dad8c9da

View file

@ -19,6 +19,9 @@
from .chunker import Chunker from .chunker import Chunker
from .hashindex import ChunkIndex from .hashindex import ChunkIndex
import msgpack import msgpack
else:
import mock
msgpack = mock.Mock()
ITEMS_BUFFER = 1024 * 1024 ITEMS_BUFFER = 1024 * 1024