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 BECAEA00C5 for ; Wed, 2 Feb 2022 16:04:57 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ABB9E411C3; Wed, 2 Feb 2022 16:04:57 +0100 (CET) Received: from mail-io1-f54.google.com (mail-io1-f54.google.com [209.85.166.54]) by mails.dpdk.org (Postfix) with ESMTP id 2FD8440689 for ; Wed, 2 Feb 2022 16:04:56 +0100 (CET) Received: by mail-io1-f54.google.com with SMTP id 9so25859295iou.2 for ; Wed, 02 Feb 2022 07:04:56 -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=BXFkVHqgcJ2YpzcOAxk/fcoUpOTk3nleHGHBrNgcTcaz+zVf/Ky0MvfWa/JgamVjYQ SeMqWm8Dx1B5kQoN/3gxI4GeAO2P7UnElhpRZjbXyvAr0lnMVuc61s12he+N1MMb6oo0 q/1jcg0cA2UijTCP4r+4mJEuJtYoKiqsUpHA0= 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=dcfzFIsdgH1klXoflIP76r7LlGRLeroURv5uT33MSxhKOsua6/79quWum8p7yYwm1n xAzJRvMQ6+tt8ZDQ7LnkP2xSsUOwv43dIsbaSfPB4+MUTe/Q6V68KYqYgVcUNozFABNX kiZ4seOG9zxcraCe7LEcgWcOni1kHGAD2CDNBXDxYqs0N+g3ixYZI4F86rT1Rc2SpKsu pvK1r85DFfsVtLdn7DJcl5IaQbzF/HSr24SgV1EUJbYLTtr9cRt16bUdHF8elaIUKVr9 Jf996kyPF9BlTv39k67CM/FjD6qFbr7xOJOL97G6q86XeBp7zOqgZO8eeXlXFZ1whYGD jLmA== X-Gm-Message-State: AOAM530ooJsiaV95gktGp4kNKggfl21EtwIXHw6eQ+8wlop2wArbzDYz D70FTrJuZ5NHaTXUj6T8BNK5aw== X-Google-Smtp-Source: ABdhPJxSGKXvW9PXCYw9cGYXIO/mB5kYclGJrdEY3g4r2zPL7aN5c2DAJPHsak1dgpr6Ei9ZTQoBWg== X-Received: by 2002:a02:cf01:: with SMTP id q1mr16160218jar.192.1643814295607; Wed, 02 Feb 2022 07:04:55 -0800 (PST) Received: from blo.unh.edu ([2606:4100:3880:1270:9db9:ea15:56a9:4976]) by smtp.gmail.com with ESMTPSA id a6sm12081603ilk.6.2022.02.02.07.04.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 02 Feb 2022 07:04:55 -0800 (PST) From: Brandon Lo To: thomas@monjalon.net Cc: ci@dpdk.org, Brandon Lo Subject: [PATCH v3 3/4] tools: add requirements file for acvp_tool Date: Wed, 2 Feb 2022 10:04:44 -0500 Message-Id: <20220202150445.28995-4-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220202150445.28995-1-blo@iol.unh.edu> References: <20220126181649.770364-1-blo@iol.unh.edu> <20220202150445.28995-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