diff mbox series

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

Message ID 2822371667829168@rovqcheq6rlfpwus.sas.yp-c.yandex.net
State Accepted
Headers show
Series [ovs-dev,v3] Don't test python3.4, python3.5 binaries in OVN_CHECK_PYTHON3 m4 check. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/github-robot-_ovn-kubernetes success github build: passed

Commit Message

Igor Zhukov Nov. 7, 2022, 1:52 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(-)

Comments

Dumitru Ceara Nov. 22, 2022, 3:06 p.m. UTC | #1
On 11/7/22 14:52, Igor Zhukov wrote:
> 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>
> ---

I pushed this to the main branch, thanks!
Igor Zhukov Nov. 22, 2022, 4:05 p.m. UTC | #2
Great! You're welcome!
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