diff mbox series

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

Message ID 2691191667827716@qv3fkcoxxqni3b7f.myt.yp-c.yandex.net
State Superseded
Headers show
Series [ovs-dev,v2] Don't test python3.4, python3.5 binaries in OVN_CHECK_PYTHON3 m4 check. | expand

Checks

Context Check Description
ovsrobot/apply-robot fail apply and check: fail

Commit Message

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

0-day Robot Nov. 7, 2022, 1:38 p.m. UTC | #1
Bleep bloop.  Greetings Igor Zhukov, I am a robot and I have tried out your patch.
Thanks for your contribution.

I encountered some error that I wasn't expecting.  See the details below.


git-am:
error: patch failed: m4/ovn.m4:303
error: m4/ovn.m4: patch does not apply
error: Did you hand edit your patch?
It does not apply to blobs recorded in its index.
hint: Use 'git am --show-current-patch=diff' to see the failed patch
Patch failed at 0001 Don't test python3.4, python3.5 binaries in OVN_CHECK_PYTHON3 m4 check.
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".


Please check this out.  If you feel there has been an error, please email aconole@redhat.com

Thanks,
0-day Robot
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