Skip to content

Commit

Permalink
autoconf: Require cython 3.0 for python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
nikias committed Apr 2, 2024
1 parent a1ef9d3 commit 612cdf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ AC_ARG_WITH([cython],
[build_cython=false],
[build_cython=true])
if test "$build_cython" = "true"; then
AC_PROG_CYTHON([0.17.0])
AC_PROG_CYTHON([3.0.0])
if [test "x$CYTHON" != "xfalse"]; then
AM_PATH_PYTHON([2.3], [CYTHON_PYTHON])
AM_PATH_PYTHON([3.0], [CYTHON_PYTHON])
fi
else
CYTHON=false
Expand Down

0 comments on commit 612cdf3

Please sign in to comment.