From b1bb75b816fd73b99716df465a305a186fae5f9a Mon Sep 17 00:00:00 2001 From: Mark Winterbottom Date: Thu, 18 Oct 2018 08:10:38 +0100 Subject: [PATCH] Updated `virtualenv` to use new python `venv`. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 29ba53955..c68aa7397 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,7 +59,7 @@ Changes should broadly follow the [PEP 8][pep-8] style conventions, and we recom To run the tests, clone the repository, and then: # Setup the virtual environment - virtualenv env + python -m venv env source env/bin/activate pip install django pip install -r requirements.txt