Skip to content

Commit

Permalink
configure: require python3-ply >= 3.9
Browse files Browse the repository at this point in the history
Problem: flux-core requires the Python ply module, but configure
doesn't check for it.

Add a check for this required module in configure.

Fixes #5444
  • Loading branch information
grondo committed Mar 27, 2024
1 parent 2e4acee commit 9f21879
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 9f21879

Please sign in to comment.