PY-29779 Update virtualenv to 15.2.0

On Python < 3.3 we rely on virtualenv script to update setuptools and
pip in created virtualenvs instead of using those we bundle. On the
affected version of MacOS virtualenv failed to download newer versions
of the packages and, thus, fell back to pip 9.0.1 (not able to handle
newer TLS on pypi.org) that it's shipped with itself.
This commit is contained in:
Mikhail Golubev
2018-05-16 17:18:24 +03:00
parent 9d87635ce1
commit 48ade29f40
3 changed files with 1 additions and 1 deletions
Binary file not shown.
Binary file not shown.
@@ -51,7 +51,7 @@ public class PyPackageManagerImpl extends PyPackageManager {
private static final String SETUPTOOLS_VERSION = "39.0.1";
private static final String SETUPTOOLS_VERSION_26 = "36.8.0";
private static final String PIP_VERSION = "9.0.3";
private static final String VIRTUALENV_VERSION = "15.1.0";
private static final String VIRTUALENV_VERSION = "15.2.0";
private static final int ERROR_NO_SETUPTOOLS = 3;