mirror of https://github.com/borgbackup/borg.git
try to mock msgpack altogether to fix RTD again
it seems that msgpack is a hard depends in archive...
This commit is contained in:
parent
a869ab0702
commit
a1dad8c9da
|
@ -19,6 +19,9 @@ if have_cython():
|
|||
from .chunker import Chunker
|
||||
from .hashindex import ChunkIndex
|
||||
import msgpack
|
||||
else:
|
||||
import mock
|
||||
msgpack = mock.Mock()
|
||||
|
||||
ITEMS_BUFFER = 1024 * 1024
|
||||
|
||||
|
|
Loading…
Reference in New Issue