From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id B7939A04BC; Tue, 29 Sep 2020 16:40:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E7D521D5E1; Tue, 29 Sep 2020 16:40:23 +0200 (CEST) Received: from mail-pf1-f195.google.com (mail-pf1-f195.google.com [209.85.210.195]) by dpdk.org (Postfix) with ESMTP id C6D961D5D9 for ; Tue, 29 Sep 2020 16:40:20 +0200 (CEST) Received: by mail-pf1-f195.google.com with SMTP id d6so4739185pfn.9 for ; Tue, 29 Sep 2020 07:40:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=3aDp7By7W0bybjy1AwN+C+7u6IZtx3g+gCi9zZ7GVg4=; b=tca1JI2Fgm6OBc3M/YewxuGpyMcOnR2RsULsOx7jDLB65IiuHl1hrzZGbs4N5enesi oMIdb4vKgxSjeY8dmweeRxG18A9h4jrvhW7SDbA4afp8w/X3epKLxeXoUopWqlOcxAk0 xH9pNcR8tOv7SaZkjjDvpV/PaA4slERP9MaOS/4cadEyA4uPR3c6OV9eW/MIcdmfinyA 2IEc7yJe3V+taJFXhczAj/YUjfFzdNuMPKR0I1JOVEgLkOaQuB82TLY6sj/tVNvFuUQq 6thWxa6qPDzxiLiZuMwZBLzoS5SYlnIhxpH2JW/H8BzMh6msUjGZucaPg9zOBBEnQ6o3 4Z0Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=3aDp7By7W0bybjy1AwN+C+7u6IZtx3g+gCi9zZ7GVg4=; b=FbEUSnZsSEYIVU5G8QiJEUVunl7hyAZK9/DwMVTni6Y6J6l376RUx8fTBvVP+ZFFbC I6bYNc1w0TpoatcTsNXVIrucAlTzjIVSpCDFoAV3uesxvxa70G1OhmH0C0YA3+7cNbhX 3LfLK86+L/BFUujHeRJbpQR5gNYCChA8t5Q0bG/P448pdrtLNAfrW8E0einDE8UG734V pHJOx2uz4mYIJvxt3vl04+ELdHrP7gntBAiHTdomurKaPy5HA0gsrlFEfvvFz82uKvWM iHZoajlg//5GZ+9dVPSGaBGeZLjxsKQJZ2FmYB4I1jB75xFBxsPvjBc7WS1e5asKknu9 8vPg== X-Gm-Message-State: AOAM532TzKp2+/cvPV953zP5n7ReVw9tdguUS3/H47DbBR22ZEIM4xvt rWOXnOvLelJ9baRTh5+JuLJSnA== X-Google-Smtp-Source: ABdhPJxDUt+fnIbB8KRD0FxtylIsOMeR2GtCAJHq1hTaRYDVqFSf28jb6uIDPekNy/PUqZu2qz8/lg== X-Received: by 2002:a63:4404:: with SMTP id r4mr3239893pga.29.1601390418827; Tue, 29 Sep 2020 07:40:18 -0700 (PDT) Received: from hermes.local (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id j4sm5316542pfj.143.2020.09.29.07.40.18 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 29 Sep 2020 07:40:18 -0700 (PDT) Date: Tue, 29 Sep 2020 07:40:10 -0700 From: Stephen Hemminger To: Kevin Laatz Cc: dev@dpdk.org, bruce.richardson@intel.com, anatoly.burakov@intel.com, robin.jarry@6wind.com, david.marchand@redhat.com Message-ID: <20200929074010.7632db63@hermes.local> In-Reply-To: <20200929102224.440322-1-kevin.laatz@intel.com> References: <20200928104328.409055-1-kevin.laatz@intel.com> <20200929102224.440322-1-kevin.laatz@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v9 00/11] adding support for python 3 only 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" On Tue, 29 Sep 2020 11:22:13 +0100 Kevin Laatz wrote: > This patch set converts all python scripts in the project to use > python3 only and removes all deprecation notices associated with these > changes. This is due to python2 being EOL in January 2020. > > --- > v6: > - rebased, removing conflict with make removal patchset. > - added changes to buildtools/map_to_win.py > > v7: > - typo in email Cc'ing David Marchand > - added maintainers for buildtools patch > > v8: > - removed unrelated cleanup > - replaced integer cast with integer division operator > > v9: > - include documentation updates > > Kevin Laatz (4): > app/test-cmdline: support python3 only > app/test: support python3 only > buildtools: support python3 only > doc: support python3 only > > Louise Kilheeney (7): > usertools/dpdk-telemetry-client: support python3 only > usertools/dpdk-devbind: support python3 only > usertools/dpdk-pmdinfo: support python3 only > usertools/cpu_layout: support python3 only > devtools: support python3 only > config/arm: support python3 only > app/test-bbdev: support python3 only > > app/test-bbdev/test-bbdev.py | 7 +------ > app/test-cmdline/cmdline_test.py | 9 ++------- > app/test-cmdline/cmdline_test_data.py | 1 + > app/test/autotest.py | 7 +------ > app/test/autotest_data.py | 1 + > app/test/autotest_runner.py | 21 ++++++++------------- > app/test/autotest_test_funcs.py | 1 + > buildtools/map_to_win.py | 3 +-- > config/arm/armv8_machine.py | 2 +- > devtools/update_version_map_abi.py | 7 +------ > doc/guides/contributing/coding_style.rst | 2 +- > doc/guides/linux_gsg/sys_reqs.rst | 2 +- > doc/guides/rel_notes/deprecation.rst | 6 ------ > doc/guides/rel_notes/release_20_11.rst | 2 ++ > usertools/cpu_layout.py | 13 ++----------- > usertools/dpdk-devbind.py | 22 ++++------------------ > usertools/dpdk-pmdinfo.py | 7 +------ > usertools/dpdk-telemetry-client.py | 18 +++--------------- > 18 files changed, 32 insertions(+), 99 deletions(-) Looks good Ack for whole series Acked-by: Stephen Hemminger