mirror of
https://github.com/borgbackup/borg.git
synced 2026-04-27 17:18:52 -04:00
require msgpack >= 0.4.6 and < 0.5.0 (1.0-maint).
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 - dropped py34 support/testing
This commit is contained in:
parent
ea3096bf04
commit
c9f42f06ae
1 changed files with 6 additions and 3 deletions
9
setup.py
9
setup.py
|
|
@ -17,9 +17,12 @@ if my_python < min_python:
|
|||
# Are we building on ReadTheDocs?
|
||||
on_rtd = os.environ.get('READTHEDOCS')
|
||||
|
||||
# msgpack pure python data corruption was fixed in 0.4.6.
|
||||
# Also, we might use some rather recent API features.
|
||||
install_requires = ['msgpack-python>=0.4.6', ]
|
||||
install_requires = [
|
||||
# msgpack pure python data corruption was fixed in 0.4.6.
|
||||
# msgpack 0.5.0 was a bit of a troublemaker.
|
||||
# also, msgpack dropped py34 support at 0.5.0.
|
||||
'msgpack-python>=0.4.6,<0.5.0',
|
||||
]
|
||||
|
||||
# note for package maintainers: if you package borgbackup for distribution,
|
||||
# please add llfuse as a *requirement* on all platforms that have a working
|
||||
|
|
|
|||
Loading…
Reference in a new issue