Skip to content

Commit 1d7b9a8

Browse files
authored
PYTHON-3026 Fix Windows Python 3.6 tests (#813)
1 parent bf992c2 commit 1d7b9a8

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.evergreen/utils.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,8 @@ createvirtualenv () {
2828
. $VENVPATH/bin/activate
2929
fi
3030

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
31+
python -m pip install --upgrade pip
32+
python -m pip install --upgrade setuptools wheel
3733
}
3834

3935
# Usage:

0 commit comments

Comments
 (0)