From 3fe2f9578a19729196d5d775923beb597c8be032 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 30 Jan 2017 00:38:40 +0100 Subject: always use 'venv' as virtualenv folder --- dev.ps1 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'dev.ps1') diff --git a/dev.ps1 b/dev.ps1 index e6b9f610..ee0fc131 100644 --- a/dev.ps1 +++ b/dev.ps1 @@ -1,20 +1,19 @@ $ErrorActionPreference = "Stop" -$VENV = ".\venv" $pyver = python --version if($pyver -notmatch "3\.[5-9]") { Write-Warning "Unexpected Python version, expected Python 3.5 or above: $pyver" } -python -m venv $VENV --copies -& $VENV\Scripts\activate.ps1 +python -m venv .\venv --copies +& .\venv\Scripts\activate.ps1 python -m pip install --disable-pip-version-check -U pip cmd /c "pip install -r requirements.txt 2>&1" echo @" - * Created virtualenv environment in $VENV. + * Created virtualenv environment in .\venv. * Installed all dependencies into the virtualenv. * Activated virtualenv environment. -- cgit v1.2.3