diff options
author | Ingo Klöcker <[email protected]> | 2024-12-04 13:15:06 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2024-12-04 16:02:40 +0000 |
commit | 27da4ec6350d803354d691c06a31c47176ec1064 (patch) | |
tree | dc5253748cd97a079576ddc8934e2fd3116b14aa /m4/python.m4 | |
parent | Post release updates (diff) | |
download | gpgme-27da4ec6350d803354d691c06a31c47176ec1064.tar.gz gpgme-27da4ec6350d803354d691c06a31c47176ec1064.zip |
build,python: Add Python 3.13 and remove Python 3.8
* configure.ac: Look for Python 3.13. Don't look for Python 3.8 anymore.
* lang/python/setup.py.in: Update Python versions in classifiers.
* m4/python.m4: Add python3.13 as valid interpreter. Remove python3.8.
--
Diffstat (limited to 'm4/python.m4')
-rw-r--r-- | m4/python.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/python.m4 b/m4/python.m4 index a9ace09b..20dc6e81 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -36,12 +36,12 @@ # numbers and dots only. AC_DEFUN([AM_PATH_PYTHON], [ - dnl Find a Python interpreter. Python versions prior to 3.8 are + dnl Find a Python interpreter. Python versions prior to 3.9 are dnl end-of-life and not supported, with the exception of 2.7 and 3.6. m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python2 python2.7 dnl python dnl - python3 python3.12 python3.11 python3.10 python3.9 python3.8 python3.6 + python3 python3.13 python3.12 python3.11 python3.10 python3.9 python3.6 ]) AC_ARG_VAR([PYTHON], [the Python interpreter]) |