summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #9672 from jdufresne/mypy-docsmasterPradyun Gedam2021-03-262-16/+27
|\ | | | | Complete typing of docs directory
| * Complete typing of docs directoryJon Dufresne2021-03-062-16/+27
| |
* | Rewrite our documentation landing pagePradyun Gedam2021-03-212-63/+48
|/ | | | | - Change to Markdown - Split the Table of Contents
* Add a pip-cli directive for MySTPradyun Gedam2021-03-061-1/+81
|
* Blacken pip_sphinxext.pyPradyun Gedam2021-03-061-30/+24
|
* Add autodoc and todo plugins for SphinxPradyun Gedam2021-03-061-0/+2
|
* Rewrite docs/conf.pyPradyun Gedam2021-03-061-279/+79
| | | | | This simplifies the Sphinx configuration and adds additional grouping and structure to the existing code as well.
* Enable MyST in documentationPradyun Gedam2021-03-061-0/+1
|
* Remove the docs-feedback extensionPradyun Gedam2021-03-062-161/+0
|
* Merge pull request #9477 from bbodenmiller/patch-1Tzu-ping Chung2021-02-271-2/+6
|\
| * Merge branch 'master' into patch-1Ben Bodenmiller2021-02-247-15/+19
| |\
| * | Simplify SSL doc - remove implementation detailsBen Bodenmiller2021-01-191-8/+5
| | |
| * | Add details on PIP_CERTBen Bodenmiller2021-01-191-2/+3
| | |
| * | Improve SSL Certificate Verification detailsBen Bodenmiller2021-01-191-2/+8
| | |
* | | Merge pull request #9656 from pradyunsg/update-resolver-timelinePradyun Gedam2021-02-251-3/+5
|\ \ \ | | | | | | | | Update note on the legacy resolver's removal
| * | | Update note on the legacy resolver's removalPradyun Gedam2021-02-211-3/+5
| | | |
* | | | Update info for unit and integration tests on MacOsQuentin Lee2021-02-251-3/+3
| |_|/ |/| |
* | | Build local directories in-place with feature flagDavid Hewitt2021-02-221-1/+9
|/ /
* | Merge pull request #9606 from hexagonrecursion/fstrPradyun Gedam2021-02-211-3/+3
|\ \
| * | Convert more str.format() calls to f-stringsAndrey Bienkowski2021-02-131-3/+3
| | |
* | | Remove typing.TYPE_CHECKING guardsJon Dufresne2021-02-191-6/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The typing module has been available since Python 3.5. Guarding the import has been unnecessary since dropping Python 2. Some guards remain to either: - Avoid circular imports - Importing objects that are also guarded by typing.TYPE_CHECKING - Avoid mypy_extensions dependency
* | | Document that pip supports Python 3.9David D Lowe2021-02-111-1/+1
|/ /
* | remove uninteded 'python -m' from installation reference docsMartin Pavlasek2021-02-031-1/+1
| |
* | Merge pull request #9497 from hugovk/update-docs-tensePaul Moore2021-01-292-2/+2
|\ \ | | | | | | Docs: update to past tense now pip 21.0 is out
| * | Docs: update to past tense now pip 21.0 is outHugo van Kemenade2021-01-232-2/+2
| |/
* | Exclude empty drafts.Greg Roodt2021-01-251-1/+1
|/
* Merge pull request #9172 from webknjaz/docs/unreleased-change-fragments-previewPradyun Gedam2020-12-262-0/+11
|\ | | | | Add a preview for the "next release" change notes
| * Add a preview for the "next release" change notesSviatoslav Sydorenko2020-12-102-0/+11
| | | | | | | | | | | | | | | | | | This change integrates `sphinxcontrib-towncrier` into the docs build. It uses Towncrier and its configs to render a draft changelog as RST and injects that into the `news.rst` document right above the older changelog entries using `towncrier-draft-entries` directive. Co-Authored-By: Pradyun Gedam <pradyunsg@gmail.com>
* | Merge pull request #9361 from jdufresne/f-stringsPradyun Gedam2020-12-261-3/+3
|\ \ | | | | | | Use f-strings for simple string formatting
| * | Use f-strings for simple string formattingJon Dufresne2020-12-251-3/+3
| | | | | | | | | | | | | | | | | | | | | Use pyupgrade to convert simple string formatting to use f-string syntax. pyupgrade is intentionally timid and will not create an f-string if it would make the expression longer or if the substitution parameters are anything but simple names or dotted names.
* | | Merge pull request #9353 from ichard26/fix_broken_mailto_linkPradyun Gedam2020-12-262-2/+2
|\ \ \ | |/ / |/| | Fix broken email link in docs feedback banners
| * | Fix broken email link in docs feedback bannersRichard Si2020-12-242-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | 'docs-feedback+ux/pip.pypa.io@pypa.io' isn't a valid email address, so I replaced it with the right email address according to this GitHub comment: https://github.com/pypa/pip/issues/8783#issuecomment-685823974
* | | Remove encoding cookie from Python source filesJon Dufresne2020-12-251-2/+0
| | | | | | | | | | | | | | | Unnecessary since dropping Python 2. Python now decodes files as utf-8 by default.
* | | Drop u prefix from str literalsJon Dufresne2020-12-251-6/+6
|/ / | | | | | | | | | | | | Unnecessary since dropping Python 2 support. This makes one test case from test_str_to_display a duplicate and so has been removed.
* | Remove redundant Python 2.7 codeHugo van Kemenade2020-12-224-7/+6
| |
* | Update passage on Python 2 supportPradyun Gedam2020-12-201-10/+3
| |
* | Drop CI info about Python 2.7/3.5Pradyun Gedam2020-12-192-39/+1
| |
* | docs: Fix typoSumana Harihareswara2020-12-141-1/+1
| | | | | | Co-authored-by: Xavier Fernandez <xav.fernandez@gmail.com>
* | docs: Fix small style issues.Sumana Harihareswara2020-12-131-7/+7
| | | | | | | | Signed-off-by: Sumana Harihareswara <sh@changeset.nyc>
* | docs: Clarify that old resolver is default with Python 2Sumana Harihareswara2020-12-133-14/+28
|/ | | | | | Partially addresses #9194. Signed-off-by: Sumana Harihareswara <sh@changeset.nyc>
* Merge pull request #9174 from pradyunsg/tweaks-to-migration-guidePradyun Gedam2020-11-291-4/+15
|\ | | | | Expand on troubleshooting steps in resolver migration guide
| * Expand on troubleshooting steps in resolver migration guidePradyun Gedam2020-11-291-4/+15
| | | | | | | | Co-authored-by: Sumana Harihareswara <sh@changeset.nyc>
* | Describe changelog quirk around beta releasePradyun Gedam2020-11-291-0/+5
|/ | | | | This helps guide users who are reading changelogs better understand what changes are a part of a "main" release.
* Fix handling orphan documents in the feedback extSviatoslav Sydorenko2020-11-281-1/+1
| | | | | | | Before this change, the cut-off step was present but the new string wasn't assigned back and this resulted in `:orphan:` not only re- injected at the beginning of the document but also left over after the admonition.
* Merge pull request #9040 from ei8fdb/include-backtracking-in-user-guidePradyun Gedam2020-11-151-0/+223
|\
| * Fixed linting failures. 🤞Bernard2020-11-111-1/+1
| |
| * Incorporating commit: e6acca646abcaaac7515da9b964d5b5291264142Bernard2020-11-111-11/+8
| |
| * Final heading edit.Bernard2020-10-301-2/+2
| |
| * Adding link to Constraints FilesBernard2020-10-301-1/+1
| |
| * Apply suggestions from code reviewBernard Tyers2020-10-281-9/+10
| | | | | | | | Co-authored-by: Pradyun Gedam <3275593+pradyunsg@users.noreply.github.com> Co-authored-by: Sumana Harihareswara <sh@changeset.nyc>