Skip to content

Commit 715c3d6

Browse files
switch to "msgpack" pypi pkg name, fixes #3890
MASTER BRANCH ONLY, DO NOT BACKPORT TO 1.1 or 1.0! As there are no 0.4.x msgpack releases (under this new name, 0.4.x used to be named "msgpack-python"), currently only 0.5.6 can be recommended. See comments for other versions that are acceptable under certain conditions. We will add new msgpack versions later, after testing them.
1 parent 2b79695 commit 715c3d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
install_requires = [
4747
# we are rather picky about msgpack versions, because a good working msgpack is
4848
# very important for borg, see https://github.com/borgbackup/borg/issues/3753
49-
# best versions seem to be 0.4.6, 0.4.7, 0.4.8 and 0.5.6:
50-
'msgpack-python >=0.4.6, <=0.5.6, !=0.5.0, !=0.5.1, !=0.5.2, !=0.5.3, !=0.5.4, !=0.5.5',
49+
# as of now, 0.5.6 is the only preferred version of msgpack:
50+
'msgpack==0.5.6',
5151
# if you can't satisfy the above requirement, these are versions that might
5252
# also work ok, IF you make sure to use the COMPILED version of msgpack-python,
5353
# NOT the PURE PYTHON fallback implementation: ==0.5.1, ==0.5.4

0 commit comments

Comments
 (0)