diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-09-25 20:57:49 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-09-25 20:57:49 +0200 |
| commit | 6bf72b6f8c08c7949b5efe4ef244cb0671bf5bf8 (patch) | |
| tree | d747ca9091a51b265b5162c601f55c88054c61de /Makefile | |
| parent | Add tentative windows instructions (diff) | |
| download | paper2remarkable-6bf72b6f8c08c7949b5efe4ef244cb0671bf5bf8.tar.gz paper2remarkable-6bf72b6f8c08c7949b5efe4ef244cb0671bf5bf8.zip | |
Use python builtin venv instead of virtualenv in Makefile
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
