1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Date: Fri, 23 Aug 2019 22:13:14 -0400
Subject: drop python2 support
Forwarded: https://dev.gnupg.org/T5298
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/configure.ac
+++ b/configure.ac
@@ -612,11 +612,11 @@ if test "$found_py" = "1"; then
PYTHON_VERSIONS=
if test "$found_py" = "1" -o "$found_py3" = "1"; then
# Reset everything, so that we can look for another Python.
m4_foreach([mym4pythonver],
- [[2.7],[3.6],[3.9],[3.10],[3.11],[3.12],[3.13],[all]],
+ [[3.6],[3.9],[3.10],[3.11],[3.12],[3.13],[all]],
[unset PYTHON
unset PYTHON_VERSION
unset PYTHON_CPPFLAGS
unset PYTHON_LDFLAGS
unset PYTHON_LIBS
|