This updates the dependency library to handle RC versions up to 39. For example, coccinelle version "1.0.0" is now correctly treated as being higher than version "1.0.0-rc24". Signed-off-by: Mathy Vanhoef <vanhoefm@xxxxxxxxx> --- lib/bpreqs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bpreqs.py b/lib/bpreqs.py index 6c46670..4399c6d 100644 --- a/lib/bpreqs.py +++ b/lib/bpreqs.py @@ -98,7 +98,7 @@ class Req: if (rc == ""): rc = 0 else: - rc = int(rc) - 20 + rc = int(rc) - 40 extra = int(rc) else: extra = int(rel_specs['EXTRAVERSION']) + 10 -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe backports" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html