diff options
author | Ben McGinnes <[email protected]> | 2018-06-29 04:26:30 +0000 |
---|---|---|
committer | Ben McGinnes <[email protected]> | 2018-06-29 04:26:30 +0000 |
commit | 43a2b5754571292b25402e20cd044ebda9316c77 (patch) | |
tree | 8cbe1b5fdb306447ab3cedbdbdc49bc48b13599f /m4 | |
parent | whitespace police: (diff) | |
download | gpgme-43a2b5754571292b25402e20cd044ebda9316c77.tar.gz gpgme-43a2b5754571292b25402e20cd044ebda9316c77.zip |
python bindings: python 3.7
* Bindings confirmed to work with the newly released 3.7.0.
* Updated M4 file to reflect this change and correct the Python binary
search order (3.7 is not yet given priority, but will still be found
first via the more generic python3 executable).
* Updated setup.py.in, bindings documentation and README to reflect this.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/python.m4 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/m4/python.m4 b/m4/python.m4 index 822b2ddf..db7b4822 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -39,8 +39,12 @@ AC_DEFUN([AM_PATH_PYTHON], m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python2 python2.7 dnl python dnl - python3 python3.0 python3.1 python3.2 python3.3 dnl - python3.4 python3.5 python3.6 python3.7 python3.8]) + dnl old listing was pointless since biundings only work from Python 3.4: + dnl python3 python3.0 python3.1 python3.2 python3.3 + dnl move 3.7 to the front once 3.7.1 or 3.7.2 is released: + dnl python3 python3.7 python3.6 python3.5 python3.4 python3.8]) + dnl until then: + python3 python3.6 python3.5 python3.4 python3.7 python3.8]) AC_ARG_VAR([PYTHON], [the Python interpreter]) |