From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mx.groups.io with SMTP id smtpd.web08.2023.1627070558212068038 for ; Fri, 23 Jul 2021 13:02:38 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=KaGd5S80; spf=pass (domain: redhat.com, ip: 216.205.24.124, mailfrom: crobinso@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1627070557; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=iDRX7h1SXXTubWXf9nLPE0LdtysR3rfu3p534+IqV/Q=; b=KaGd5S80Pl+Qnuw4VcXt2d/HGWASH7IukcmHujJ6tTRpp2952L80zWlIeQLpYqksy5buPs UqQRvb5vEoVSdf+YvmTUJsTqaxlpYrraE7pZ3CvODT+Ifs0MfGstJuxYY+dp82y5Nkv+i1 4jaePtasUU3HcvRdUnjCtfHG5p2RPZg= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-357-CD2tt6SiN7WInMZnnQy2gQ-1; Fri, 23 Jul 2021 16:02:36 -0400 X-MC-Unique: CD2tt6SiN7WInMZnnQy2gQ-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 1896D190A7A0 for ; Fri, 23 Jul 2021 20:02:35 +0000 (UTC) Received: from worklaptop.redhat.com (unknown [10.22.18.9]) by smtp.corp.redhat.com (Postfix) with ESMTP id A3AAF100238C; Fri, 23 Jul 2021 20:02:34 +0000 (UTC) From: "Cole" To: devel@edk2.groups.io Cc: Cole Robinson Subject: [PATCH 3/3] BaseTools: Drop check for distutils.utils Date: Fri, 23 Jul 2021 16:02:28 -0400 Message-Id: <1a3162c86b5bdda83505ee074ad7bcdc932b92d7.1627070203.git.crobinso@redhat.com> In-Reply-To: References: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=crobinso@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="US-ASCII" distutils.utils is no longer used anywhere, so this check can be dropped. Signed-off-by: Cole Robinson --- BaseTools/Tests/RunTests.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/BaseTools/Tests/RunTests.py b/BaseTools/Tests/RunTests.py index 81af736cd8..934683a446 100644 --- a/BaseTools/Tests/RunTests.py +++ b/BaseTools/Tests/RunTests.py @@ -13,13 +13,6 @@ import os import sys=0D import unittest=0D =20=0D -try:=0D - import distutils.util=0D -except ModuleNotFoundError:=0D - sys.exit('''=0D -Python reported: "No module named 'distutils.util"=0D -''')=0D -=0D import TestTools=0D =20=0D def GetCTestSuite():=0D --=20 2.31.1