From f3ad4e030cb62aa4aba10307ecd4ab25222a8895 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 16 Nov 2018 07:49:00 +0000 Subject: [PATCH] Don't attempt to detect Python 3.0 and 3.1 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 985f2ffb0..a515f8bed 100644 --- a/configure.ac +++ b/configure.ac @@ -753,7 +753,7 @@ else if test x"$PYOSNAME" = x"nt" -a x"$PYSEPARATOR" = x"\\" -a $PYVER -ge 3; then PYTHON3="$PYTHON" else - for py_ver in 3 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 ""; do + for py_ver in 3 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 ""; do AC_CHECK_PROGS(PYTHON3, [python$py_ver]) if test -n "$PYTHON3"; then AC_CHECK_PROGS(PY3CONFIG, [$PYTHON3-config])