Decrease minimum python version to 3.4
authorng0 <ng0@n0.is>
Mon, 1 Apr 2019 20:26:54 +0000 (20:26 +0000)
committerng0 <ng0@n0.is>
Mon, 1 Apr 2019 20:26:54 +0000 (20:26 +0000)
README
configure.ac

diff --git a/README b/README
index b60023500915dfd81f9afd40a167f3e5aa483647..0e676b491681e3cabea41e62f3058186cbf77797 100644 (file)
--- a/README
+++ b/README
@@ -95,7 +95,8 @@ These are the dependencies for GNUnet's testsuite:
 
 - Bash                              (for some tests[*4])
 - A Posix Shell                     (for some tests)
-- python             >= 3.7         (only python 3.7 is supported)
+- python             >= 3.4         (3.4 and higher technically supported,
+                                     at least python 3.7 tested to work)
 - base tools
   - mostly:
     - bc,
index eac6b67b8d52356f83074e44620cde672a9238c5..5bfb4ce726bd0866c5adda6d6d246a9c7afccef0 100644 (file)
@@ -208,9 +208,9 @@ AM_CONDITIONAL(HAVE_SSH_KEY,  ssh -D 12345 -o "BatchMode yes" -o "UserKnownHosts
 rm -f /tmp/gnunet_test_cosks_ssh_garbage
 
 # autotools' m4 for python has no maximum version!
-# python3.7 for tests
-m4_define_default([_AM_PYTHON_INTERPRETER_LIST],[python3 python3.7 python])
-AM_PATH_PYTHON([3.7],, [:])
+# python3.4 - python3.7 for tests
+m4_define_default([_AM_PYTHON_INTERPRETER_LIST],[python3 python3.4 python3.5 python3.6 python3.7 python])
+AM_PATH_PYTHON([3.4],, [:])
 AC_SUBST([PYTHON])
 AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])