diff options
author | johnthagen <johnthagen@users.noreply.github.com> | 2020-09-05 20:53:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-05 20:53:47 (GMT) |
commit | 1264d0465ad77019a43ff8c1f8d329b17f049f80 (patch) | |
tree | cde9ca865922fa542474b681661aad28cfc0d6ed /Doc/using | |
parent | 7f331c898a36d937c66ba93f86d2a445c96d382e (diff) | |
download | cpython-1264d0465ad77019a43ff8c1f8d329b17f049f80.zip cpython-1264d0465ad77019a43ff8c1f8d329b17f049f80.tar.gz cpython-1264d0465ad77019a43ff8c1f8d329b17f049f80.tar.bz2 |
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
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/venv-create.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc index 8f850a7..ddb36f9 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 |