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 BE49DA00C4 for ; Mon, 18 Apr 2022 15:36:23 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B9F7440C35; Mon, 18 Apr 2022 15:36:23 +0200 (CEST) Received: from mail-qt1-f178.google.com (mail-qt1-f178.google.com [209.85.160.178]) by mails.dpdk.org (Postfix) with ESMTP id 5ACC440141 for ; Mon, 18 Apr 2022 15:36:22 +0200 (CEST) Received: by mail-qt1-f178.google.com with SMTP id hf18so9541126qtb.0 for ; Mon, 18 Apr 2022 06:36:22 -0700 (PDT) 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=ZQwJcV6dIX2Pm4xmd1Z2oXIDlZvrwYLDqCBxBNKP8p9XOwYpkJ1FI6RBjO2zqaGKCq a19yW+6Nps9hADZq2WFhySDagnjYhGLfpo/DxROwde21eiUzgrqrEan32Ha+XkfWxqha 7XLQQtjKPkGUt4UyIEck4NjH3RRBMVCI7A2S4= 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=ek2JJc+zViqZxx7K1hi/kwave1DXU4ZOHlpyM8zRzCTuIP9CMZRbkCPEjPNeVTuo0L k4ULx5UsgSU6kJr8A45J24OpTSHWa21EJE6zoQQUssRhSYTXdi3upMpe1SE+yUiyx/fI Joy50fxROqwImVK/s//yPnzoHSiprFN1MzJJlmNDWC3UfTWQ0VOnUiD09QB104fJ8fBZ sWQlB5//c/DZVx98xSCYk5zTZJRbH/8zDAd1nWM6FijqkHEXQuXa/asA05c/G7PQelud YmjDq3KAG1oiW7/7DZNeQNfHybyOE/fbmuZsJtvywcZgecJtBy9lwrQSAf9ITosIpgt8 rPDg== X-Gm-Message-State: AOAM530yGsQsRHGPXVHyXWmdeVAgAyskxCZTU2V9Bw89CWDLCCHinCf1 NlR130Opb+Bd1H0xFWemD1k1GTvh4kEy468AwoE= X-Google-Smtp-Source: ABdhPJyj/uECVw12s6po9W2lN0F8CH0OUX5h7ds5hfbnn4eONPPhOWBNxFwRsCjhEU4gvqiu6UROog== X-Received: by 2002:ac8:5a41:0:b0:2f1:f30e:c07f with SMTP id o1-20020ac85a41000000b002f1f30ec07fmr6912469qta.112.1650288981808; Mon, 18 Apr 2022 06:36:21 -0700 (PDT) Received: from blo.iol.unh.edu ([2601:187:807e:37c0:ecc3:edc7:5dbb:9578]) by smtp.gmail.com with ESMTPSA id v14-20020a05622a144e00b002f1f32f86a6sm4480605qtx.5.2022.04.18.06.36.21 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 18 Apr 2022 06:36:21 -0700 (PDT) From: Brandon Lo To: alialnu@nvidia.com Cc: ci@dpdk.org, Brandon Lo Subject: [PATCH v4 3/4] tools: add requirements file for acvp_tool Date: Mon, 18 Apr 2022 09:36:09 -0400 Message-Id: <20220418133610.10835-4-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220418133610.10835-1-blo@iol.unh.edu> References: <20220202150445.28995-1-blo@iol.unh.edu> <20220418133610.10835-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