Skip to content

Commit

Permalink
Merge pull request #5839 from grondo/issue#5444
Browse files Browse the repository at this point in the history
configure: add missing check for python ply >= 3.9
  • Loading branch information
mergify[bot] committed Mar 27, 2024
2 parents c9a06e4 + 82a344f commit aca18f5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,11 @@ AM_CHECK_PYMOD(yaml,
,
[AC_MSG_ERROR([could not find python module yaml, version 3.10+ required])]
)
AM_CHECK_PYMOD(ply,
[Version(ply.__version__) >= Version ('3.9')],
,
[AC_MSG_ERROR([could not find python module ply, version 3.9+ required])]
)

AS_IF([test "x$enable_docs" != "xno"], [
AM_CHECK_PYMOD(sphinx,
Expand Down

0 comments on commit aca18f5

Please sign in to comment.