From: Dave Wallace Date: Mon, 8 Nov 2021 17:23:01 +0000 (-0500) Subject: tests: fix missing dataclasses module in python 3.6 X-Git-Tag: v22.06-rc0~279 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=995123ec2024dd181194874456593bf06f2e07f1;p=vpp.git tests: fix missing dataclasses module in python 3.6 Type: fix Fixes: b8165b96f Signed-off-by: Dave Wallace Change-Id: Ic82a0404073a26e3d160b01c9038cde11eedf3ec --- diff --git a/test/requirements.txt b/test/requirements.txt index a9c93f45450..dbb2fbf6c4f 100644 --- a/test/requirements.txt +++ b/test/requirements.txt @@ -20,3 +20,4 @@ noiseprotocol # MIT recommonmark # MIT pyyaml # MIT jsonschema; python_version >= '3.7' # MIT +dataclasses; python_version == '3.6' # Apache-2.0