aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-09-25 20:57:49 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-09-25 20:57:49 +0200
commit6bf72b6f8c08c7949b5efe4ef244cb0671bf5bf8 (patch)
treed747ca9091a51b265b5162c601f55c88054c61de /Makefile
parentAdd tentative windows instructions (diff)
downloadpaper2remarkable-6bf72b6f8c08c7949b5efe4ef244cb0671bf5bf8.tar.gz
paper2remarkable-6bf72b6f8c08c7949b5efe4ef244cb0671bf5bf8.zip
Use python builtin venv instead of virtualenv in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 769fc87..bcbc420 100644
--- a/Makefile
+++ b/Makefile
@@ -55,7 +55,7 @@ doc: install ## Build documentation with Sphinx
venv: $(VENV_DIR)/bin/activate
$(VENV_DIR)/bin/activate:
- test -d $(VENV_DIR) || virtualenv $(VENV_DIR)
+ test -d $(VENV_DIR) || python -m venv $(VENV_DIR)
source $(VENV_DIR)/bin/activate && pip install -e .[dev]
touch $(VENV_DIR)/bin/activate