From: yufengmx <yufengx.mo@intel.com>
To: dts@dpdk.org, lijuan.tu@intel.com, lihongx.ma@intel.com
Cc: yufengmx <yufengx.mo@intel.com>
Subject: [dts] [PATCH V5 1/3] framework: check the python version
Date: Fri, 23 Oct 2020 17:25:47 +0800 [thread overview]
Message-ID: <20201023092549.33439-2-yufengx.mo@intel.com> (raw)
In-Reply-To: <20201023092549.33439-1-yufengx.mo@intel.com>
implement a method to check the python version of tester and the server that run dts.
If the version is lower than 3.6.9, print a warning message.
Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
framework/utils.py | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/framework/utils.py b/framework/utils.py
index e74e6c5..6084ea6 100644
--- a/framework/utils.py
+++ b/framework/utils.py
@@ -32,6 +32,7 @@
import json # json format
import re
import os
+import sys
import inspect
import socket
import struct
@@ -280,3 +281,30 @@ def get_backtrace_object(file_name, obj_name):
obj = getattr(frame.f_locals['self'], obj_name, None)
return obj
+
+
+def check_crb_python_version(crb):
+ cmd = 'python3 -V'
+ out = crb.send_expect(cmd, '#', 5)
+ pat = "Python (\d+).(\d+).(\d+)"
+ result = re.findall(pat, out)
+ if not result or \
+ int(result[0][0]) < 3 or \
+ (int(result[0][0]) == 3 and int(result[0][1]) < 6) or \
+ (int(result[0][0]) == 3 and int(result[0][1]) == 6 and int(result[0][2]) < 9):
+ crb.logger.warning(
+ ("WARNING: Tester node python version is lower than python 3.6, "
+ "it is deprecated for use in DTS, "
+ "and will not work in future releases."))
+ crb.logger.warning("Please use Python >= 3.6.9 instead")
+
+
+def check_dts_python_version():
+ if sys.version_info.major < 3 or \
+ (sys.version_info.major == 3 and sys.version_info.minor < 6) or \
+ (sys.version_info.major == 3 and sys.version_info.minor == 6 and sys.version_info.micro < 9):
+ print(RED(
+ ("WARNING: Dts running node python version is lower than python 3.6, "
+ "it is deprecated for use in DTS, "
+ "and will not work in future releases.")), file=sys.stderr)
+ print(RED("Please use Python >= 3.6.9 instead"), file=sys.stderr)
--
2.21.0
next prev parent reply other threads:[~2020-10-23 9:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-23 9:25 [dts] [PATCH V5 0/3] " yufengmx
2020-10-23 9:25 ` yufengmx [this message]
2020-10-23 9:25 ` [dts] [PATCH V5 2/3] " yufengmx
2020-10-23 9:25 ` [dts] [PATCH V5 3/3] " yufengmx
2020-10-27 5:32 ` [dts] [PATCH V5 0/3] " Tu, Lijuan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201023092549.33439-2-yufengx.mo@intel.com \
--to=yufengx.mo@intel.com \
--cc=dts@dpdk.org \
--cc=lihongx.ma@intel.com \
--cc=lijuan.tu@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).