From 48074c55faa0de160aeb7abc5c7546250635e92d Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Thu, 28 Nov 2019 10:52:22 +0800 Subject: [PATCH] Remove upgrade_dependencies() from venv doc --- Doc/library/venv.rst | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 3483ef36a2c33ea..31a3f41e4724ce9 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -186,14 +186,6 @@ creation according to their needs, the :class:`EnvBuilder` class. Installs activation scripts appropriate to the platform into the virtual environment. - .. method:: upgrade_dependencies(context) - - Upgrades the core venv dependency packages (currently ``pip`` and - ``setuptools``) in the environment. This is done by shelling out to the - ``pip`` executable in the environment. - - .. versionadded:: 3.8 - .. method:: post_setup(context) A placeholder method which can be overridden in third party