From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3A3C0A034C; Tue, 11 Jan 2022 14:33:50 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AF391426FE; Tue, 11 Jan 2022 14:33:49 +0100 (CET) Received: from wout4-smtp.messagingengine.com (wout4-smtp.messagingengine.com [64.147.123.20]) by mails.dpdk.org (Postfix) with ESMTP id C513241143; Tue, 11 Jan 2022 14:33:48 +0100 (CET) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.west.internal (Postfix) with ESMTP id 04A0E3201D9C; Tue, 11 Jan 2022 08:33:46 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute3.internal (MEProxy); Tue, 11 Jan 2022 08:33:47 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=fm3; bh= j1+6MioHBJ63fTX/I1iVrnSc47kpAry2thHRgCuxRT8=; b=G2oAjwiOxFuuhf15 6xfFf86v4PZnmAE2Zdfz38Aw9yz2JRdwU3gWY2NpUfHmFL9jt3RETSKGMDvy8LBX 1zbSh0l8gqk7UYMgJa7S1aBnixIa551FlneUfil5pSrZsndQaLUegno1WT58H1Ob Iz7rC/BM1eYMHqipppBhDRIbzdnNWJn89Oh9Fljid6Af1E98J8DK9o13QWQkhMxK XzSeIQlRir6IBUdSGhbO74FV6wF1jasrVHljeknbVeWsfr6wAJGo3kaogdLMQpH0 uoFf7G1ERGTCaiyT7Obm0RjwnvLvDFWplG4igAQ4X9BVpTNGiQoPL++mBNey6vFl IP3lzw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=j1+6MioHBJ63fTX/I1iVrnSc47kpAry2thHRgCuxR T8=; b=alg8fWN7X20DOzUZz4Zep0xUwL9uHlWw7iu1fkX0upfFcrTE3g9jpcxPe JH0bRHmqNliB5KPqEtVjP0sqq8FjoS2IR2+RHdPTX38um+n5hNZOXjMh96RzmWet /omWtyb8L+O3CB5myV9OU48wKmbjQLN3QxRas57yhd59ocq4AoyfanD4/+cVV9L4 dmOHeQixATohmcuhVrKFZrMGQVxtkMeeyn2EZY70XhtSusJhslXsXQ1d30gtCFDf cgbeJayAoHPIGjwhT1120yo8tH7nuTwA6UsO8t+r7nBDSyt1tBLploODBQmMcVPU tBUz36cu+GegzkPKZ37Q08h8RsS6w== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvuddrudehfedgheegucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecugg ftrfgrthhtvghrnhepudeggfdvfeduffdtfeeglefghfeukefgfffhueejtdetuedtjeeu ieeivdffgeehnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrh homhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Tue, 11 Jan 2022 08:33:45 -0500 (EST) From: Thomas Monjalon To: Jerin Jacob Cc: dpdk-dev , dpdk stable , Jerin Jacob , Bruce Richardson Subject: Re: [PATCH] doc: replace deprecated distutils version parsing Date: Tue, 11 Jan 2022 14:33:43 +0100 Message-ID: <3082516.5fSG56mABF@thomas> In-Reply-To: References: <20220111114356.893127-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org 11/01/2022 14:11, Jerin Jacob: > On Tue, Jan 11, 2022 at 5:14 PM Thomas Monjalon wrote: > > > > When using Python 3.10, this warning appears: > > DeprecationWarning: The distutils package is deprecated > > and slated for removal in Python 3.12. > > Use setuptools or check PEP 632 for potential alternatives > > > > The PEP 632 recommends replacing "distutils.version" with "packaging". > > > > Bugzilla ID: 914 > > Cc: stable@dpdk.org > > > > Reported-by: Jerin Jacob > > Signed-off-by: Thomas Monjalon > > Tested-by: Jerin Jacob Applied