mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
require msgpack >= 0.4.6 and < 0.6.0, forbid 0.5.0.
maybe this is the easiest way for us to deal with msgpack compatibility. 0.5.0 release had some troubles: - FutureWarning on stderr disturbing other output there, breaking tests - pip install -U broken due to a pip issue with the transisition pkg which was needed due to the package rename (ImportError for msgpack) - some linux dists not packaging the transition pkg
This commit is contained in:
parent
34c4400979
commit
a71a83c380
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -37,8 +37,8 @@
|
||||||
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
# msgpack pure python data corruption was fixed in 0.4.6.
|
# msgpack pure python data corruption was fixed in 0.4.6.
|
||||||
# Also, we might use some rather recent API features.
|
# msgpack 0.5.0 was a bit of a troublemaker.
|
||||||
'msgpack-python>=0.4.6',
|
'msgpack-python>=0.4.6,!=0.5.0,<0.6.0',
|
||||||
'pyzmq',
|
'pyzmq',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue