bpo-38928: Fix versionadded for venv's upgrade_deps function (GH-17404)

This commit is contained in:
Tzu-ping Chung 2019-11-28 04:21:48 +08:00 committed by Vinay Sajip
parent ea9835c5d1
commit 045d4e243d
2 changed files with 4 additions and 2 deletions

View File

@ -132,7 +132,7 @@ creation according to their needs, the :class:`EnvBuilder` class.
.. versionadded:: 3.6
Added the ``prompt`` parameter
.. versionadded:: 3.8
.. versionadded:: 3.9
Added the ``upgrade_deps`` parameter
Creators of third-party virtual environment tools will be free to use the
@ -197,7 +197,7 @@ creation according to their needs, the :class:`EnvBuilder` class.
``setuptools``) in the environment. This is done by shelling out to the
``pip`` executable in the environment.
.. versionadded:: 3.8
.. versionadded:: 3.9
.. method:: post_setup(context)

View File

@ -0,0 +1,2 @@
Correct when venv's ``upgrade_dependencies()`` and ``--upgrade-deps`` are
added.