From 48677feb7d08636fbbf2f4296c7f7133c6cbe6a6 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 30 Jan 2020 21:17:33 +0000 Subject: Remove explicit six dependency --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index eb3ce93..ffee6c3 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ venv: $(VENV_DIR)/bin/activate $(VENV_DIR)/bin/activate: test -d $(VENV_DIR) || virtualenv $(VENV_DIR) - source $(VENV_DIR)/bin/activate && pip install -e .[dev] && pip install six + source $(VENV_DIR)/bin/activate && pip install -e .[dev] touch $(VENV_DIR)/bin/activate clean_venv: -- cgit v1.2.3 From a964e42f144951bf752e1f995a6eea0ffc0c7743 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Fri, 20 Mar 2020 20:09:45 +0000 Subject: clean makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ffee6c3..bedbaae 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PACKAGE=paper2remarkable DOC_DIR='./docs/' VENV_DIR=/tmp/p2r_venv/ -.PHONY: help cover dist venv +.PHONY: help dist venv .DEFAULT_GOAL := help -- cgit v1.2.3 From 96a1526c8daf51ab151e6ccea325be8694d8f2ef Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Fri, 3 Apr 2020 10:52:16 +0100 Subject: fix name in makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index bedbaae..769fc87 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ doc: install ## Build documentation with Sphinx cd $(DOC_DIR) && \ rm source/* && \ source $(VENV_DIR)/bin/activate && \ - sphinx-apidoc -H 'CleverCSV API Documentation' -o source ../$(PACKAGE) && \ + sphinx-apidoc -H 'Paper2Remarkable API Documentation' -o source ../$(PACKAGE) && \ touch source/AUTOGENERATED $(MAKE) -C $(DOC_DIR) html -- cgit v1.2.3 From 6bf72b6f8c08c7949b5efe4ef244cb0671bf5bf8 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Fri, 25 Sep 2020 20:57:49 +0200 Subject: Use python builtin venv instead of virtualenv in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3