From 27e343c16cd13e059c6e2465c7fc15e7e281b7f9 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 16 Jul 2024 17:28:18 -0500 Subject: [PATCH] Use "python3 -m venv" instead of "virtualenv" in Makefile template --- src/pgwui_develop/TEMPLATE/Makefile_pgwui.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pgwui_develop/TEMPLATE/Makefile_pgwui.mk b/src/pgwui_develop/TEMPLATE/Makefile_pgwui.mk index 522e1c7..ee23a59 100644 --- a/src/pgwui_develop/TEMPLATE/Makefile_pgwui.mk +++ b/src/pgwui_develop/TEMPLATE/Makefile_pgwui.mk @@ -30,7 +30,7 @@ # This works on debian... PYTHON_EXE=python3 -VIRTUALENV=virtualenv -p ${PYTHON_EXE} +VIRTUALENV=${PYTHON_EXE} -m venv # (Optional) where pyenv is installed (git clone somepath) # For running tox against multiple python versions PYENV_INSTALLATION := $(HOME)/.pyenv -- 2.34.1