File tree 4 files changed +9
-11
lines changed
4 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -3350,7 +3350,7 @@ Improved Documentation
3350
3350
- Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296.
3351
3351
- Display format of latest package when using ``pip list --outdated ``. (#2475)
3352
3352
- 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 `)
3354
3354
- Normalize the ``--wheel-dir `` option, expanding out constructs such as ``~ ``
3355
3355
when used. (#2441)
3356
3356
- Display a warning when an undefined extra has been requested. (#2142)
@@ -3641,7 +3641,7 @@ Improved Documentation
3641
3641
--no-download `` are now formally deprecated. See #906 for discussion on
3642
3642
possible alternatives, or lack thereof, in future releases.
3643
3643
- **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 `)
3645
3645
- pip now generates the appropriate platform-specific console scripts when
3646
3646
installing wheels. (#1251)
3647
3647
- pip now confirms a wheel is supported when installing directly from a path or
Original file line number Diff line number Diff line change 17
17
# first-party extensions
18
18
"sphinx.ext.autodoc" ,
19
19
"sphinx.ext.todo" ,
20
- "sphinx.ext.extlinks" ,
21
20
"sphinx.ext.intersphinx" ,
22
21
# our extensions
23
22
"pip_sphinxext" ,
26
25
"sphinx_copybutton" ,
27
26
"sphinx_inline_tabs" ,
28
27
"sphinxcontrib.towncrier" ,
28
+ "sphinx_issues" ,
29
29
]
30
30
31
31
# General information about the project.
71
71
"pypug" : ("https://packaging.python.org" , None ),
72
72
}
73
73
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
-
82
74
# -- Options for towncrier_draft extension --------------------------------------------
83
75
84
76
towncrier_draft_autoversion_mode = "draft" # or: 'sphinx-release', 'sphinx-version'
@@ -137,3 +129,7 @@ def to_document_name(path: str, base_dir: str) -> str:
137
129
copybutton_prompt_text = r"\$ | C\:\> "
138
130
copybutton_prompt_is_regexp = True
139
131
copybutton_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
7
7
sphinx-copybutton
8
8
sphinx-inline-tabs
9
9
sphinxcontrib-towncrier >= 0.2.0a0
10
+ sphinx-issues
10
11
11
12
# `docs.pipext` uses pip's internals to generate documentation. So, we install
12
13
# 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