Skip to content

Commit aca18f5

Browse files
authored
Merge pull request #5839 from grondo/issue#5444
configure: add missing check for python ply >= 3.9
2 parents c9a06e4 + 82a344f commit aca18f5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

configure.ac

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,11 @@ AM_CHECK_PYMOD(yaml,
260260
,
261261
[AC_MSG_ERROR([could not find python module yaml, version 3.10+ required])]
262262
)
263+
AM_CHECK_PYMOD(ply,
264+
[Version(ply.__version__) >= Version ('3.9')],
265+
,
266+
[AC_MSG_ERROR([could not find python module ply, version 3.9+ required])]
267+
)
263268

264269
AS_IF([test "x$enable_docs" != "xno"], [
265270
AM_CHECK_PYMOD(sphinx,

0 commit comments

Comments
 (0)