diff mbox series

[ovs-dev,2/2] Don't test python3.4, python3.5 binaries in OVN_CHECK_PYTHON3 m4 check.

Message ID 181311667823609@66ftscwz67pcsni4.myt.yp-c.yandex.net
State Superseded
Headers show
Series None | expand

Commit Message

Igor Zhukov Nov. 7, 2022, 12:20 p.m. UTC
From: Igor Zhukov <ivzhukov@sbercloud.ru>

Also add python 3.11

Just a some cleanup of the commit: https://github.com/ovn-org/ovn/commit/6cbda808a2dc1f5beda39cbe50451f8d834d609a

Signed-off-by: Igor Zhukov <ivzhukov@sbercloud.ru>
---
 m4/ovn.m4 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/m4/ovn.m4 b/m4/ovn.m4
index bc2ac1aef..a92f4ceda 100644
--- a/m4/ovn.m4
+++ b/m4/ovn.m4
@@ -303,13 +303,13 @@  AC_DEFUN([OVN_CHECK_VALGRIND],
 dnl Checks for Python 3.6 or later.
 AC_DEFUN([OVN_CHECK_PYTHON3],
   [AC_CACHE_CHECK(
-     [for Python 3 (version 3.4 or later)],
+     [for Python 3 (version 3.6 or later)],
      [ovs_cv_python3],
      [if test -n "$PYTHON3"; then
         ovs_cv_python3=$PYTHON3
       else
         ovs_cv_python3=no
-        for binary in python3 python3.4 python3.5 python3.6 python3.7 python3.8 python3.9 python 3.10; do
+        for binary in python3 python3.6 python3.7 python3.8 python3.9 python 3.10 python 3.11; do
           ovs_save_IFS=$IFS; IFS=$PATH_SEPARATOR
           for dir in $PATH; do
             IFS=$ovs_save_IFS