From f2283cf1890b14bd7ce56c5addc633f91f8462f3 Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 24 Aug 2022 21:14:53 +0200 Subject: [PATCH] Build: fix make venv - for some reason folder cannot be called venv anymore --- Makefile.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.conf b/Makefile.conf index 730d2aa..eb00e92 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -8,7 +8,7 @@ BUILD_INPLACE = ./src/pEp/_pEp.cpython-* PYTHON_ARTIFACTS += ./.eggs PYTHON_ARTIFACTS += ./src/pEp.egg-info PYTHON_ARTIFACTS += ./.pytest_cache -VENV_DIR = ./venv +VENV_DIR = ./_venv # Build config Defaults DEBUG=1