mitmproxy/dev.ps1
Maximilian Hils c5eae9d752 drop support for Python 3.6 and 3.7
We require Python 3.8 for sans-io (#1775),
so we need to drop support for older versions.
2020-12-06 00:25:09 +01:00

21 lines
502 B
PowerShell

$ErrorActionPreference = "Stop"
$pyver = python --version
if($pyver -notmatch "3\.(8|9|\d{2,})") {
Write-Warning "Unexpected Python version, expected Python 3.8 or above: $pyver"
}
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.
* Installed all dependencies into the virtualenv.
* Activated virtualenv environment.
"@