remove superfluous python version check

This commit is contained in:
Maximilian Hils 2020-12-06 14:06:23 +01:00
parent ee414cde70
commit 7767fdb6d5
1 changed files with 0 additions and 5 deletions

View File

@ -1,10 +1,5 @@
$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