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 3cea605 commit 3969bc9
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 @@ -132,9 +132,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], [
AM_PATH_PYTHON([3.0], [
CYTHON_PYTHON
AS_COMPILER_FLAG([-Wno-cast-function-type -Werror], [
CYTHON_CFLAGS+=" -Wno-cast-function-type"
Expand Down

0 comments on commit 3969bc9

Please sign in to comment.