Skip to content

Commit b5c3883

Browse files
authoredMar 31, 2018
Update dev.ps1
1 parent 53827a3 commit b5c3883

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎dev.ps1

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
$ErrorActionPreference = "Stop"
22

33
$pyver = python --version
4-
if($pyver -notmatch "3\.[5-9]") {
5-
Write-Warning "Unexpected Python version, expected Python 3.5 or above: $pyver"
4+
if($pyver -notmatch "3\.[6-9]") {
5+
Write-Warning "Unexpected Python version, expected Python 3.6 or above: $pyver"
66
}
77

88
python -m venv .\venv --copies
@@ -17,4 +17,4 @@ echo @"
1717
* Installed all dependencies into the virtualenv.
1818
* Activated virtualenv environment.
1919
20-
"@
20+
"@

0 commit comments

Comments
 (0)
Please sign in to comment.