summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-09 14:56:38 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-09 14:58:12 -0800
commit4d1a578dd5348909ade2a853d806272326d228d7 (patch)
treecc79d22677eb3caab616c3d8eb4d5f65fa7d2acc
parente2a3e80eb837eaaa834a01a2741d4c249c984442 (diff)
downloadxcb-libxcb-4d1a578dd5348909ade2a853d806272326d228d7.tar.gz
Raise minimum required version of Python from 2.6 to 3.0
Trying to build with Python 2.7.14 fails with: File "./c_client.py", line 2270 key = (*self.name[:-1], field.enum) ^ SyntaxError: invalid syntax Fixes: 33f3dbe ("Fix handling of documented enum parameters") Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index be9b523..206ab69 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,7 +12,7 @@ AC_CONFIG_HEADERS([src/config.h])
# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-xz])
-AM_PATH_PYTHON([2.6])
+AM_PATH_PYTHON([3.0])
# Set common system defines for POSIX extensions, such as _GNU_SOURCE
# Must be called before any macros that run the compiler (like AC_PROG_LIBTOOL)