We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf992c2 commit 1d7b9a8Copy full SHA for 1d7b9a8
.evergreen/utils.sh
@@ -28,12 +28,8 @@ createvirtualenv () {
28
. $VENVPATH/bin/activate
29
fi
30
31
- PYVER=$(${PYTHON} -c "import sys; sys.stdout.write('.'.join(str(val) for val in sys.version_info[:2]))")
32
- # pip fails to upgrade in a Python 3.6 venv on Windows.
33
- if [ $PYVER != "3.6" -o "Windows_NT" != "$OS" ] ; then
34
- python -m pip install --upgrade pip
35
- python -m pip install --upgrade setuptools wheel
36
- fi
+ python -m pip install --upgrade pip
+ python -m pip install --upgrade setuptools wheel
37
}
38
39
# Usage:
0 commit comments