From 1979f9476678c0e92a02a2574482b62a9af155a1 Mon Sep 17 00:00:00 2001
From: Mark Gibbs <delsim@users.noreply.github.com>
Date: Sat, 7 May 2022 23:02:39 -0700
Subject: [PATCH] Update make_env script to no longer require virtualenv
 command (#397)

Co-authored-by: delsim <dev@gibbsconsulting.ca>
---
 make_env | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/make_env b/make_env
index a6fc7cc..e628f39 100755
--- a/make_env
+++ b/make_env
@@ -9,7 +9,7 @@ set -e
 DEFAULT_PYTHON_VER=3.6
 PYTHON_VER=${1:-$DEFAULT_PYTHON_VER}
 #
-virtualenv -p python${PYTHON_VER} env
+python${PYTHON_VER} -m venv env
 #
 source env/bin/activate
 #
-- 
GitLab