Skip to content

Commit 666eaa9

Browse files
committed
depend on 3.12 or higher
1 parent 55cf6b0 commit 666eaa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cffi/source.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
#include <libyang/libyang.h>
77
#include <libyang/version.h>
88

9-
#if (LY_VERSION_MAJOR != 3)
10-
#error "This version of libyang bindings only works with libyang 3.x"
9+
#if (LY_VERSION_MAJOR != 3 || LY_VERSION_MINOR < 12)
10+
#error "This version of libyang bindings only works with libyang 3.12+"
1111
#endif

0 commit comments

Comments
 (0)