File tree Expand file tree Collapse file tree 4 files changed +9
-11
lines changed
Expand file tree Collapse file tree 4 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -3350,7 +3350,7 @@ Improved Documentation
33503350- Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296.
33513351- Display format of latest package when using ``pip list --outdated ``. (#2475)
33523352- Don't use pywin32 as ctypes should always be available on Windows, using
3353- pywin32 prevented uninstallation of pywin32 on Windows. (:pull : `2467 `)
3353+ pywin32 prevented uninstallation of pywin32 on Windows. (:pr : `2467 `)
33543354- Normalize the ``--wheel-dir `` option, expanding out constructs such as ``~ ``
33553355 when used. (#2441)
33563356- Display a warning when an undefined extra has been requested. (#2142)
@@ -3641,7 +3641,7 @@ Improved Documentation
36413641 --no-download `` are now formally deprecated. See #906 for discussion on
36423642 possible alternatives, or lack thereof, in future releases.
36433643- **DEPRECATION ** ``pip zip `` and ``pip unzip `` are now formally deprecated.
3644- - pip will now install Mac OSX platform wheels from PyPI. (:pull : `1278 `)
3644+ - pip will now install Mac OSX platform wheels from PyPI. (:pr : `1278 `)
36453645- pip now generates the appropriate platform-specific console scripts when
36463646 installing wheels. (#1251)
36473647- pip now confirms a wheel is supported when installing directly from a path or
Original file line number Diff line number Diff line change 1717 # first-party extensions
1818 "sphinx.ext.autodoc" ,
1919 "sphinx.ext.todo" ,
20- "sphinx.ext.extlinks" ,
2120 "sphinx.ext.intersphinx" ,
2221 # our extensions
2322 "pip_sphinxext" ,
2625 "sphinx_copybutton" ,
2726 "sphinx_inline_tabs" ,
2827 "sphinxcontrib.towncrier" ,
28+ "sphinx_issues" ,
2929]
3030
3131# General information about the project.
7171 "pypug" : ("https://packaging.python.org" , None ),
7272}
7373
74- # -- Options for extlinks -------------------------------------------------------------
75-
76- extlinks = {
77- "issue" : ("https://github.com/pypa/pip/issues/%s" , "#%s" ),
78- "pull" : ("https://github.com/pypa/pip/pull/%s" , "PR #%s" ),
79- "pypi" : ("https://pypi.org/project/%s/" , "%s" ),
80- }
81-
8274# -- Options for towncrier_draft extension --------------------------------------------
8375
8476towncrier_draft_autoversion_mode = "draft" # or: 'sphinx-release', 'sphinx-version'
@@ -137,3 +129,7 @@ def to_document_name(path: str, base_dir: str) -> str:
137129copybutton_prompt_text = r"\$ | C\:\> "
138130copybutton_prompt_is_regexp = True
139131copybutton_only_copy_prompt_lines = False
132+
133+ # -- Options for sphinx_issues --------------------------------------------------------
134+
135+ issues_default_group_project = "pypa/pip"
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ myst_parser
77sphinx-copybutton
88sphinx-inline-tabs
99sphinxcontrib-towncrier >= 0.2.0a0
10+ sphinx-issues
1011
1112# `docs.pipext` uses pip's internals to generate documentation. So, we install
1213# the current directory to make it work.
Original file line number Diff line number Diff line change 1+ Integrate ``sphinx-issues `` into the Sphinx config.
You can’t perform that action at this time.
0 commit comments