aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-04-01 20:26:54 +0000
committerng0 <ng0@n0.is>2019-04-01 20:26:54 +0000
commitd32aa0c415cf19d246a75ab0cec29cdacc801bac (patch)
treee0694eaf8c7583a7993bd3517e0ec652bf15d7c7
parent9fbf2e434b67c3180908e4f2663e0cec5125e9cd (diff)
downloadgnunet-d32aa0c415cf19d246a75ab0cec29cdacc801bac.tar.gz
gnunet-d32aa0c415cf19d246a75ab0cec29cdacc801bac.zip
Decrease minimum python version to 3.4
-rw-r--r--README3
-rw-r--r--configure.ac6
2 files changed, 5 insertions, 4 deletions
diff --git a/README b/README
index b60023500..0e676b491 100644
--- a/README
+++ b/README
@@ -95,7 +95,8 @@ These are the dependencies for GNUnet's testsuite:
95 95
96- Bash (for some tests[*4]) 96- Bash (for some tests[*4])
97- A Posix Shell (for some tests) 97- A Posix Shell (for some tests)
98- python >= 3.7 (only python 3.7 is supported) 98- python >= 3.4 (3.4 and higher technically supported,
99 at least python 3.7 tested to work)
99- base tools 100- base tools
100 - mostly: 101 - mostly:
101 - bc, 102 - bc,
diff --git a/configure.ac b/configure.ac
index eac6b67b8..5bfb4ce72 100644
--- a/configure.ac
+++ b/configure.ac
@@ -208,9 +208,9 @@ AM_CONDITIONAL(HAVE_SSH_KEY, ssh -D 12345 -o "BatchMode yes" -o "UserKnownHosts
208rm -f /tmp/gnunet_test_cosks_ssh_garbage 208rm -f /tmp/gnunet_test_cosks_ssh_garbage
209 209
210# autotools' m4 for python has no maximum version! 210# autotools' m4 for python has no maximum version!
211# python3.7 for tests 211# python3.4 - python3.7 for tests
212m4_define_default([_AM_PYTHON_INTERPRETER_LIST],[python3 python3.7 python]) 212m4_define_default([_AM_PYTHON_INTERPRETER_LIST],[python3 python3.4 python3.5 python3.6 python3.7 python])
213AM_PATH_PYTHON([3.7],, [:]) 213AM_PATH_PYTHON([3.4],, [:])
214AC_SUBST([PYTHON]) 214AC_SUBST([PYTHON])
215AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :]) 215AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
216 216