Skip to content

Commit

Permalink
Make search for best Python 3 setup better
Browse files Browse the repository at this point in the history
* default to "python3", since that is most likely to be correct
* add python3.6 and python3.5 which are now available
* remove python3.3, python3.2, and python3.1 which are no longer maintained
  • Loading branch information
shane-kerr committed Jan 4, 2017
1 parent 4b4130b commit 34655f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ case "$host" in
;;
esac

m4_define([_AM_PYTHON_INTERPRETER_LIST], [python python3.4 python3.3 python3.2 python3.1 python3])
m4_define([_AM_PYTHON_INTERPRETER_LIST], [python3 python3.6 python3.5 python3.4 python])
AC_ARG_WITH([pythonpath],
AC_HELP_STRING([--with-pythonpath=PATH],
[specify an absolute path to python executable when automatic version check (incorrectly) fails]),
Expand Down

0 comments on commit 34655f9

Please sign in to comment.