From c7439acd03a6ab3dc0d064817558332fbfe0c5c1 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Wed, 27 Oct 2021 15:28:20 -0400 Subject: [PATCH] Add wheel package to tests venv construction This addresses "Legacy mode" notices when installing local packages. References: * [AC-195] Use Python venv instead of virtualenv to build virtual environments for CI Signed-off-by: Alex Nelson --- tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 2d09c4b..bb4eaf6 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -48,7 +48,8 @@ all: \ && pip install \ --upgrade \ pip \ - setuptools + setuptools \ + wheel source venv/bin/activate \ && pip install \ --requirement requirements.txt