From patchwork Fri Jul 10 10:10:49 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Louise Kilheeney X-Patchwork-Id: 73733 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 80033A052A; Fri, 10 Jul 2020 12:11:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5D1BC1D9F0; Fri, 10 Jul 2020 12:11:08 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 132DE1D9C2 for ; Fri, 10 Jul 2020 12:11:04 +0200 (CEST) IronPort-SDR: tmQC0FMyIB98O2hKC1CXrQav6r32SoYomz6Tdrgi/B0u6OBbAGCVZyPauyf8vQJsuVcevemjSf BcGqFrUPW+2Q== X-IronPort-AV: E=McAfee;i="6000,8403,9677"; a="136380949" X-IronPort-AV: E=Sophos;i="5.75,335,1589266800"; d="scan'208";a="136380949" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jul 2020 03:11:04 -0700 IronPort-SDR: kIsLPPHe0obD2CdbrQ9GMHL0p8eUzDYhV1u/zUCbU2mbNE7ww8pdxZbotgMlm7Azz1YhTMitG1 u/ITYox/t1eQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,335,1589266800"; d="scan'208";a="298384591" Received: from silpixa00389033.ir.intel.com (HELO silpixa00389033.ger.corp.intel.com) ([10.237.223.171]) by orsmga002.jf.intel.com with ESMTP; 10 Jul 2020 03:11:03 -0700 From: Louise Kilheeney To: dev@dpdk.org Cc: david.marchand@redhat.com, bruce.richardson@intel.com, Louise Kilheeney Date: Fri, 10 Jul 2020 11:10:49 +0100 Message-Id: <20200710101055.33671-4-louise.kilheeney@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200710101055.33671-1-louise.kilheeney@intel.com> References: <20200710101055.33671-1-louise.kilheeney@intel.com> Subject: [dpdk-dev] [PATCH 3/9] usertools/dpdk-devbind: add python2 deprecation notice X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" add python2 deprecation notice Signed-off-by: Louise Kilheeney --- usertools/dpdk-devbind.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py index dc008823f..86b6b53c4 100755 --- a/usertools/dpdk-devbind.py +++ b/usertools/dpdk-devbind.py @@ -10,6 +10,10 @@ import subprocess from os.path import exists, abspath, dirname, basename +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) + # The PCI base class for all devices network_class = {'Class': '02', 'Vendor': None, 'Device': None, 'SVendor': None, 'SDevice': None}