From 8c65b21c6157ab8c44e736a2a20a6a407b4cb023 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Fri, 7 Jul 2023 01:24:02 +0800 Subject: [PATCH] Upgrade wheel pip setuptools with `make install_test` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c852a1e9..43dd9aeaa 100644 --- a/Makefile +++ b/Makefile @@ -106,7 +106,7 @@ pyspec: # installs the packages to run pyspec tests install_test: - python3 -m venv venv; . venv/bin/activate; python3 -m pip install -e .[lint]; python3 -m pip install -e .[test] + python3 -m venv venv; . venv/bin/activate; python3 -m pip install --upgrade wheel pip setuptools; python3 -m pip install -e .[lint]; python3 -m pip install -e .[test] # Testing against `minimal` or `mainnet` config by default test: pyspec