From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mx.groups.io with SMTP id smtpd.web11.1594.1573461679711800722 for ; Mon, 11 Nov 2019 00:41:19 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.88, mailfrom: michael.d.kinney@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Nov 2019 00:41:12 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,292,1569308400"; d="scan'208";a="234403638" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.255.231.122]) by fmsmga002.fm.intel.com with ESMTP; 11 Nov 2019 00:41:11 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Sean Brogan , Andrew Fish , Laszlo Ersek , Leif Lindholm , Liming Gao Subject: [Patch v5 03/22] pip_requirements.txt: Add python pip requirements file Date: Mon, 11 Nov 2019 00:40:48 -0800 Message-Id: <20191111084107.5368-4-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20191111084107.5368-1-michael.d.kinney@intel.com> References: <20191111084107.5368-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Sean Brogan Add pip requirements file that is used to install the python pip modules build from the edk2-pytool-library and edk2-pytool-extensions repositories. These python modules provide the extensions required to perform EDK II Continuous Integration(CI) builds. Cc: Andrew Fish Cc: Laszlo Ersek Cc: Leif Lindholm Signed-off-by: Michael D Kinney Reviewed-by: Liming Gao --- pip_requirements.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pip_requirements.txt diff --git a/pip_requirements.txt b/pip_requirements.txt new file mode 100644 index 0000000000..4ad72cfc98 --- /dev/null +++ b/pip_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.
+# +# 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==0.10.* +edk2-pytool-extensions==0.12.* -- 2.21.0.windows.1