From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web09.114.1636996164721477199 for ; Mon, 15 Nov 2021 09:09:25 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: pierre.gondois@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id ACA9111B3; Mon, 15 Nov 2021 09:09:23 -0800 (PST) Received: from e120189.home (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id B5FC83F766; Mon, 15 Nov 2021 09:09:21 -0800 (PST) From: "PierreGondois" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao , Sami Mujawar , Pierre Gondois Subject: [PATCH edk2-platforms v5 2/6] pip-requirements.txt: Add python pip requirements file Date: Mon, 15 Nov 2021 17:08:52 +0000 Message-Id: <20211115170856.336-3-Pierre.Gondois@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20211115170856.336-1-Pierre.Gondois@arm.com> References: <20211115170856.336-1-Pierre.Gondois@arm.com> From: Pierre Gondois To enable CI support of the tianocore/edk2-platforms repository, add pip requirements file to install the python modules required to perform EDK II Continuous Integration (CI) builds. This file is a copy of the file from the tianocore/edk2 repository. Any modification to the tianocore/edk2 file must be reflected on the tianocore/edk2-platforms copy. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=3509 Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Cc: Sami Mujawar Co-authored-by: Sami Mujawar Signed-off-by: Pierre Gondois --- pip-requirements.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pip-requirements.txt diff --git a/pip-requirements.txt b/pip-requirements.txt new file mode 100644 index 000000000000..aea2e6ece431 --- /dev/null +++ b/pip-requirements.txt @@ -0,0 +1,18 @@ +## @file +# EDK II Python PIP requirements file +# +# This file provides the list of python components to install using PIP. +# +# Copyright (c) Microsoft Corporation. +# 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 +# https://www.python.org/dev/peps/pep-0440/#version-specifiers +## + +edk2-pytool-library==0.10.* +edk2-pytool-extensions~=0.13.3 +edk2-basetools==0.1.2 +antlr4-python3-runtime==4.7.1 -- 2.17.1