summaryrefslogtreecommitdiffstats
path: root/Doc/library/ensurepip.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)Victor Stinner2021-01-201-3/+3
| | | | | | | | | | | | | Add --with-wheel-pkg-dir=PATH option to the ./configure script. If specified, the ensurepip module looks for setuptools and pip wheel packages in this directory: if both are present, these wheel packages are used instead of ensurepip bundled wheel packages. Some Linux distribution packaging policies recommend against bundling dependencies. For example, Fedora installs wheel packages in the /usr/share/python-wheels/ directory and don't install the ensurepip._bundled package. ensurepip: Remove unused runpy import.
* bpo-39183: Fix formatting in library/ensurepip (GH-17787)Rafael Fontenelle2020-01-011-1/+1
| | | | | | Remove extra space to fix formatting and avoid from splitting text in to strings. https://bugs.python.org/issue39183
* bpo-37390: Add audit event table to documentations (GH-14406)Steve Dower2019-06-271-1/+1
| | | Also updates some (unreleased) event names to be consistent with the others.
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+2
|
* bpo-32996: The bulk of What's New in Python 3.7 (GH-6978)Elvis Pranskevichus2018-05-201-3/+0
|
* bpo-31351: Set return code in ensurepip when pip fails (GH-3626)Igor Filatov2017-09-211-0/+3
| | | | Previously ensurepip would always report success, even if the pip installation failed.
* Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-1/+1
|
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+2
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* minor markup fix: no inline markup is allowed in a module synopsisGeorg Brandl2014-10-301-1/+1
|
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-161-1/+1
|
* Close #19734: ignore pip env vars in ensurepipNick Coghlan2013-12-231-0/+6
|
* Move versionadded for ensurepip into the standard location (right after title)R David Murray2013-12-201-2/+2
|
* Close #19406: Initial implementation of ensurepipNick Coghlan2013-11-111-0/+125
Patch by Donald Stufft and Nick Coghlan