aboutsummaryrefslogtreecommitdiffstats
path: root/community/borgbackup/msgpack-fix.patch
blob: 102492abcc3439e8baf7677c489db44a98a4b292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- borgbackup-1.1.7/setup.py.original
+++ borgbackup-1.1.7/setup.py
@@ -39,7 +39,9 @@
     # we are rather picky about msgpack versions, because a good working msgpack is
     # very important for borg, see https://github.com/borgbackup/borg/issues/3753
     # best versions seem to be 0.4.6, 0.4.7, 0.4.8 and 0.5.6:
-    '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',
+    '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;python_version <"3.4"',
+    'msgpack-python >=0.4.6, <0.5;python_version=="3.4"',
+    'msgpack >=0.5.6;python_version >="3.5"',
     # if you can't satisfy the above requirement, these are versions that might
     # also work ok, IF you make sure to use the COMPILED version of msgpack-python,
     # NOT the PURE PYTHON fallback implementation: ==0.5.1, ==0.5.4