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 96814A04A3 for ; Wed, 26 Jan 2022 19:16:56 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8D26A42756; Wed, 26 Jan 2022 19:16:56 +0100 (CET) Received: from mail-qt1-f169.google.com (mail-qt1-f169.google.com [209.85.160.169]) by mails.dpdk.org (Postfix) with ESMTP id 5D2D142756 for ; Wed, 26 Jan 2022 19:16:55 +0100 (CET) Received: by mail-qt1-f169.google.com with SMTP id e16so416762qtq.6 for ; Wed, 26 Jan 2022 10:16:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=d6G+yPqPte8njavGlgH1TteO27MNnNfScYV3HVEa7Nc=; b=ObspLnMZMsj0BLmp+NSCVrBnct12QbfpoVhBoYYH2A7FW1YONyotXq0hJEwOz+ZCYz vny/sL+QZC9zwKZW+r3NwzFgvJIWr7IqKhYtEmEIuSruOQxftVqtgKvzVDMCBzHMN8Lf bcUwcRzljLP7iDF0vWSZcfp0wMynS0iQofEf8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=d6G+yPqPte8njavGlgH1TteO27MNnNfScYV3HVEa7Nc=; b=ZI3xsrIRZ1hW0j6eIUg5NJNveDTQ4896UJvihJw2z8nphX9diDLwelutXK0UVFiuTe 8IwUF6VCk553p3VKwL2JDZdDxcYUwrDRLDpxzCjrvIYiFqQV2UeF9lnyiEIr4MLGhcqL gfDhTc1ZGLngmDuz75HWqFbmT1fylgSXhxR5+qKoCYfxVa4obmWLN05OxxYRM8QYj0eH tZbHEkgDmLa52hkOpJueOV9OQn4x0H9h3HcAVZSNWfpr3VjQpPlIVNu6F0dHyHZQ0X+D VqGGvlQT9hoCUp2r+z8cBZ5rZtaOuEtk6dQgxwmDR6Utg3wpsq8EsqmGMV64ifcVupX0 29rw== X-Gm-Message-State: AOAM532F6HF11PeJiV0yTfagCaIqA4Xv+7GVsOBgM8UaFVq2XOse3FIa zDaRP0eJyH2jW+FQfDAJjJBqdi6wXPyZQSCFJrJRRfvaUuRoOmiHEI0YOPqKmXUmcPzpknmVejB 46zdPC5bBn2WMPXavpGl7niyLMcEPxyAKzV9bJuzGZWe4xH1T6Q== X-Google-Smtp-Source: ABdhPJzi/9TKGNX2fIGGgw0RsL2udjbQSTLN2Zb1Usna25RLDWwI5rNIeqVIFi22mRdXvXxP0o6XtA== X-Received: by 2002:a05:622a:51:: with SMTP id y17mr12169367qtw.540.1643221014555; Wed, 26 Jan 2022 10:16:54 -0800 (PST) Received: from blo.unh.edu (nt-238-78.w4.unh.edu. [132.177.238.78]) by smtp.gmail.com with ESMTPSA id v21sm3198qtx.13.2022.01.26.10.16.53 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 26 Jan 2022 10:16:53 -0800 (PST) From: Brandon Lo To: ci@dpdk.org Cc: Brandon Lo Subject: [PATCH v2 3/4] tools: add requirements file for acvp_tool Date: Wed, 26 Jan 2022 13:16:48 -0500 Message-Id: <20220126181649.770364-4-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220126181649.770364-1-blo@iol.unh.edu> References: <20220126181649.770364-1-blo@iol.unh.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org Adds the basic requirements for the acvp_tool script. Signed-off-by: Brandon Lo --- tools/acvp/requirements.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tools/acvp/requirements.txt diff --git a/tools/acvp/requirements.txt b/tools/acvp/requirements.txt new file mode 100644 index 0000000..428f06c --- /dev/null +++ b/tools/acvp/requirements.txt @@ -0,0 +1,7 @@ +certifi==2021.10.8 +charset-normalizer==2.0.10 +idna==3.3 +pyotp==2.6.0 +requests==2.27.1 +six==1.16.0 +urllib3==1.26.8 -- 2.25.1