[dpdk-dev] [PATCH v10 09/11] app/test-bbdev: support python3 only

Kevin Laatz kevin.laatz at intel.com
Wed Sep 30 13:40:22 CEST 2020


From: Louise Kilheeney <louise.kilheeney at intel.com>

Changed script to explicitly use python3 only to avoid
maintaining python 2 and removed deprecation notice.

Cc: Nicolas Chautru <nicolas.chautru at intel.com>

Signed-off-by: Louise Kilheeney <louise.kilheeney at intel.com>
Acked-by: Robin Jarry <robin.jarry at 6wind.com>
Acked-by: Stephen Hemminger <stephen at networkplumber.org>
---
 app/test-bbdev/test-bbdev.py | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/app/test-bbdev/test-bbdev.py b/app/test-bbdev/test-bbdev.py
index 5ae2dc6c49..7d67dbe30a 100755
--- a/app/test-bbdev/test-bbdev.py
+++ b/app/test-bbdev/test-bbdev.py
@@ -1,9 +1,8 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-from __future__ import print_function
 import sys
 import os
 import argparse
@@ -16,10 +15,6 @@ def kill(process):
     print("ERROR: Test app timed out")
     process.kill()
 
-if sys.version_info.major < 3:
-    print("WARNING: Python 2 is deprecated for use in DPDK, and will not work in future releases.", file=sys.stderr)
-    print("Please use Python 3 instead", file=sys.stderr)
-
 if "RTE_SDK" in os.environ:
     dpdk_path = os.environ["RTE_SDK"]
 else:
-- 
2.25.1



More information about the dev mailing list