[libvirt-python PATCH] setup: require python >= 3.5 to build

Daniel P. Berrangé berrange at redhat.com
Mon Apr 20 12:47:10 UTC 2020


Pytjon 3.5 is the oldest Python version available across our supported
build platforms.

Signed-off-by: Daniel P. Berrangé <berrange at redhat.com>
---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 56b6eea..b3e418e 100755
--- a/setup.py
+++ b/setup.py
@@ -17,8 +17,8 @@ import re
 import shutil
 import time
 
-if sys.version_info[0] != 3:
-    print("libvirt-python requires Python 3.x to build")
+if sys.version_info[0] != 3 or sys.version_info[1] < 5:
+    print("libvirt-python requires Python 3 >= 3.5 to build")
     sys.exit(1)
 
 MIN_LIBVIRT = "0.9.11"
-- 
2.25.2




More information about the libvir-list mailing list