From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.61]) by mx.groups.io with SMTP id smtpd.web11.2497.1573123777992884164 for ; Thu, 07 Nov 2019 02:49:38 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=Lwgvxlg/; spf=pass (domain: redhat.com, ip: 205.139.110.61, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1573123777; 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=gQYlAfW1evQraOjnXvkXOpKYolX1UmBhXt44u62FdP0=; b=Lwgvxlg/U/gdTqUjBlTw0ApkGvMUQTLaMo9zOCnz1Z3Ib2QInRyDg6pTkFsH2dly48cTvo YljuF71uFPV4QoGUBf6/9S4YKc7B0ZskP1Tki+v9tPOYlH91yETLsAfuHlhu3iFtrnGp/Z QuR20laV/WFjU4v80dknA/T9bURstyc= 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-64-nJz7gu4ZNGatEepw-ci2Kg-1; Thu, 07 Nov 2019 05:49:30 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id C3898107ACC3; Thu, 7 Nov 2019 10:49:28 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (unknown [10.36.118.71]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9DA15608B3; Thu, 7 Nov 2019 10:49:27 +0000 (UTC) Subject: Re: [Patch v4 03/22] requirements.txt: Add python pip requirements file To: Michael D Kinney , devel@edk2.groups.io Cc: Sean Brogan , Andrew Fish , Leif Lindholm References: <20191107011349.16524-1-michael.d.kinney@intel.com> <20191107011349.16524-4-michael.d.kinney@intel.com> From: "Laszlo Ersek" Message-ID: <6927ddd9-27f1-779c-e743-b83966e71324@redhat.com> Date: Thu, 7 Nov 2019 11:49:26 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20191107011349.16524-4-michael.d.kinney@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-MC-Unique: nJz7gu4ZNGatEepw-ci2Kg-1 X-Mimecast-Spam-Score: 0 Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 11/07/19 02:13, Michael D Kinney wrote: > From: Sean Brogan >=20 > Add pip requirements file that is used to install the > python pip modules build from the edk2-pytool-library and > edk2-pytool-extensions repositories. >=20 > These python modules provide the extensions required to > perform EDK II Continuous Integration(CI) builds. >=20 > Cc: Andrew Fish > Cc: Laszlo Ersek > Cc: Leif Lindholm > Signed-off-by: Michael D Kinney > --- > requirements.txt | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > create mode 100644 requirements.txt >=20 > diff --git a/requirements.txt b/requirements.txt > new file mode 100644 > index 0000000000..4ad72cfc98 > --- /dev/null > +++ b/requirements.txt > @@ -0,0 +1,17 @@ > +## @file > +# EDK II Python PIP requirements file > +# > +# This file provides the list of python components to install using PIP. > +# > +# Copyright (c) Microsoft Corporation. All rights reserved.
The year seems to be missing from this copyright notice too. Thanks Laszlo > +# > +# SPDX-License-Identifier: BSD-2-Clause-Patent > +# > +# https://pypi.org/project/pip/ > +# https://pip.pypa.io/en/stable/user_guide/#requirements-files > +# https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file= -format > +# > +## > + > +edk2-pytool-library=3D=3D0.10.* > +edk2-pytool-extensions=3D=3D0.12.* >=20