aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2021-02-03 14:23:40 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2021-02-03 14:23:40 +0000
commitd717edd1626f4036fe830971944f832d4dfbfa03 (patch)
tree85b6d2cf002694a036691c689e374bb40befa2e7 /Makefile
parentFix rounding differences in aapl data (diff)
downloadTCPD-d717edd1626f4036fe830971944f832d4dfbfa03.tar.gz
TCPD-d717edd1626f4036fe830971944f832d4dfbfa03.zip
add wheel to make recipe
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 106c393..550ea1c 100644
--- a/Makefile
+++ b/Makefile
@@ -69,5 +69,7 @@ venv: $(VENV_DIR)/bin/activate
$(VENV_DIR)/bin/activate:
test -d $(VENV_DIR) || python -m venv $(VENV_DIR)
- source $(VENV_DIR)/bin/activate && pip install -r ./requirements.txt
+ source $(VENV_DIR)/bin/activate && \
+ pip install wheel && \
+ pip install -r ./requirements.txt
touch $(VENV_DIR)/bin/activate