You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Virtualenv bundles pip, wheel and setuptools. The Python packaging ecosystem is moving quite rapidly at the moment, and the version of virtualenv used to build the docs is sufficiently old that the bundled setuptools cannot handle the new version of mock (which needs setuptools 17.1).
Options:
upgrade your virtualenv to 13.1.0
add a call to pip install -U pip wheel setuptools between making the virtualenv and installing projects
The text was updated successfully, but these errors were encountered:
I believe you should be able to specify this in your requirements file also. Which seems like a good idea if you require a specific, newer version. I'll look into upgrading our versions as well though.
We updated the virtualenv in requirements/pip.txt for #1426. However that
did only touch the virtualenv of readthedocs, not the ones of the builds. So
updating it with this change.
Fixes#1428.
Virtualenv bundles pip, wheel and setuptools. The Python packaging ecosystem is moving quite rapidly at the moment, and the version of virtualenv used to build the docs is sufficiently old that the bundled setuptools cannot handle the new version of mock (which needs setuptools 17.1).
Options:
The text was updated successfully, but these errors were encountered: