[Python-checkins] Fix documented Python version for venv --upgrade-deps (GH-22113)

johnthagen webhook-mailer at python.org
Sat Sep 5 16:53:56 EDT 2020


https://github.com/python/cpython/commit/1264d0465ad77019a43ff8c1f8d329b17f049f80
commit: 1264d0465ad77019a43ff8c1f8d329b17f049f80
branch: master
author: johnthagen <johnthagen at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-09-05T13:53:47-07:00
summary:

Fix documented Python version for venv --upgrade-deps (GH-22113)



Fixes incorrect Python version added for `venv` `--upgrade-deps` in #13100. This feature was added in Python 3.9 not 3.8.

Relates to:

- 
- https://github.com/python/cpython/commit/1cba1c9abadf76f458ecf883a48515aa3b534dbd

Automerge-Triggered-By: @vsajip

files:
M Doc/using/venv-create.inc

diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc
index 8f850a74d413c..ddb36f94667d9 100644
--- a/Doc/using/venv-create.inc
+++ b/Doc/using/venv-create.inc
@@ -67,7 +67,7 @@ The command, if run with ``-h``, will show the available options::
     Once an environment has been created, you may wish to activate it, e.g. by
     sourcing an activate script in its bin directory.
 
-.. versionchanged:: 3.8
+.. versionchanged:: 3.9
    Add ``--upgrade-deps`` option to upgrade pip + setuptools to the latest on PyPI
 
 .. versionchanged:: 3.4



More information about the Python-checkins mailing list