Skip to content

Commit ff376a7

Browse files
committed
docs: use sphinx-issues
Signed-off-by: Filipe Laíns <[email protected]>
1 parent e496fe6 commit ff376a7

File tree

3 files changed

+70
-172
lines changed

3 files changed

+70
-172
lines changed

CHANGELOG.rst

Lines changed: 65 additions & 172 deletions
Original file line numberDiff line numberDiff line change
@@ -7,292 +7,185 @@ Unreleased
77
==========
88

99
- Removed the ``toml`` library fallback; ``toml`` can no longer be used
10-
as a substitute for ``tomli``.
11-
(`PR #567`_)
10+
as a substitute for ``tomli``
11+
(PR :pr:`567`)
1212
- Added ``runner`` parameter to ``util.project_wheel_metadata``
13-
(`PR #566`_, Fixes `#553`_)
13+
(PR :pr:`566`, Fixes :issue:`553`)
1414
- Modified ``ProjectBuilder`` constructor signature,
1515
added alternative ``ProjectBuilder.from_env`` constructor,
1616
redefined ``env.IsolatedEnv`` interface, and exposed ``env.DefaultIsolatedEnv``,
1717
replacing ``env.IsolatedEnvBuilder``. The aim has been to shift
1818
responsibility for modifying the environment from the project builder
1919
to the ``IsolatedEnv`` entirely and to ensure that the builder will be initialised
2020
from an ``IsolatedEnv`` in a consistent manner. Mutating the project builder is no longer supported.
21-
(`PR #537`_)
21+
(PR :pr:`537`)
2222

23-
.. _#553: https://github.com/pypa/build/issues/553
24-
.. _PR #537: https://github.com/pypa/build/pull/537
25-
.. _PR #566: https://github.com/pypa/build/pull/566
26-
.. _PR #567: https://github.com/pypa/build/pull/567
2723

2824

2925
0.10.0 (2023-01-11)
3026
===================
3127

3228
- Replace ``pep517`` dependency with ``pyproject_hooks``,
3329
into which ``pep517`` has been renamed
34-
(`PR #539`_, Fixes `#529`_)
30+
(PR :pr:`539`, Fixes :issue:`529`)
3531
- Change build backend from ``setuptools`` to ``flit``
36-
(`PR #470`_, Fixes `#394`_)
37-
- Dropped support for Python 3.6 (`PR #532`_)
32+
(PR :pr:`470`, Fixes :issue:`394`)
33+
- Dropped support for Python 3.6 (PR :pr:`532`)
3834

39-
.. _PR #470: https://github.com/pypa/build/pull/470
40-
.. _PR #532: https://github.com/pypa/build/pull/532
41-
.. _#394: https://github.com/pypa/build/issues/394
42-
.. _PR #539: https://github.com/pypa/build/pull/539
43-
.. _#529: https://github.com/pypa/build/issues/529
4435

4536

4637
0.9.0 (2022-10-27)
4738
==================
4839

49-
- Hide a Python 3.11.0 unavoidable warning with venv (`PR #527`_)
40+
- Hide a Python 3.11.0 unavoidable warning with venv (PR :pr:`527`)
5041
- Fix infinite recursion error in ``check_dependency`` with circular
51-
dependencies (`PR #512`_, Fixes `#511`_)
52-
- Only import colorama on Windows (`PR #494`_, Fixes `#493`_)
53-
- Flush output more often to reduce interleaved output (`PR #494`_)
54-
- Small API cleanup, like better ``__all__`` and srcdir being read only. (`PR #477`_)
55-
- Only use ``importlib_metadata`` when needed (`PR #401`_)
56-
- Clarify in printout when build dependencies are being installed (`PR #514`_)
57-
58-
.. _PR #401: https://github.com/pypa/build/pull/401
59-
.. _PR #477: https://github.com/pypa/build/pull/477
60-
.. _PR #494: https://github.com/pypa/build/pull/494
61-
.. _PR #512: https://github.com/pypa/build/pull/512
62-
.. _PR #514: https://github.com/pypa/build/pull/514
63-
.. _PR #527: https://github.com/pypa/build/pull/527
64-
.. _#493: https://github.com/pypa/build/issues/493
65-
.. _#511: https://github.com/pypa/build/issues/511
42+
dependencies (PR :pr:`512`, Fixes :issue:`511`)
43+
- Only import colorama on Windows (PR :pr:`494`, Fixes :issue:`493`)
44+
- Flush output more often to reduce interleaved output (PR :pr:`494`)
45+
- Small API cleanup, like better ``_all__`` and srcdir being read only. (PR :pr:`477`)
46+
- Only use ``importlib_metadata`` when needed (PR :pr:`401`)
47+
- Clarify in printout when build dependencies are being installed (PR :pr:`514`)
48+
6649

6750

6851
0.8.0 (2022-05-22)
6952
==================
7053

7154
- Accept ``os.PathLike[str]`` in addition to ``str`` for paths in public
72-
API (`PR #392`_, Fixes `#372`_)
55+
API (PR :pr:`392`, Fixes :issue:`372`)
7356
- Add schema validation for ``build-system`` table to check conformity
74-
with PEP 517 and PEP 518 (`PR #365`_, Fixes `#364`_)
75-
- Better support for Python 3.11 (sysconfig schemes `PR #434`_, `PR #463`_, tomllib `PR #443`_, warnings `PR #420`_)
76-
- Improved error printouts (`PR #442`_)
77-
- Avoid importing packaging unless needed (`PR #395`_, Fixes `#393`_)
78-
57+
with PEP 517 and PEP 518 (PR :pr:`365`, Fixes :issue:`364`)
58+
- Better support for Python 3.11 (sysconfig schemes PR :pr:`434`, PR :pr:`463`, tomllib PR :pr:`443`, warnings PR :pr:`420`)
59+
- Improved error printouts (PR :pr:`442`)
60+
- Avoid importing packaging unless needed (PR :pr:`395`, Fixes :issue:`393`)
7961

8062
Breaking Changes
8163
----------------
8264

8365
- Failure to create a virtual environment in the ``build.env`` module now raises
84-
``build.FailedProcessError`` (`PR #442`_)
66+
``build.FailedProcessError`` (PR :pr:`442`)
8567

86-
.. _PR #365: https://github.com/pypa/build/pull/365
87-
.. _PR #392: https://github.com/pypa/build/pull/392
88-
.. _PR #395: https://github.com/pypa/build/pull/395
89-
.. _PR #420: https://github.com/pypa/build/pull/420
90-
.. _PR #434: https://github.com/pypa/build/pull/434
91-
.. _PR #442: https://github.com/pypa/build/pull/442
92-
.. _PR #443: https://github.com/pypa/build/pull/443
93-
.. _PR #463: https://github.com/pypa/build/pull/463
94-
.. _#364: https://github.com/pypa/build/issues/364
95-
.. _#372: https://github.com/pypa/build/issues/372
96-
.. _#393: https://github.com/pypa/build/pull/393
9768

9869

9970
0.7.0 (2021-09-16)
10071
==================
10172

102-
- Add ``build.util`` module with an high-level utility API (`PR #340`_)
73+
- Add ``build.util`` module with an high-level utility API (PR :pr:`340`)
10374

104-
.. _PR #340: https://github.com/pypa/build/pull/340
10575

10676

10777
0.6.0.post1 (2021-08-05)
10878
========================
10979

110-
- Fix compatibility with Python 3.6 and 3.7 (`PR #339`_, Fixes `#338`_)
111-
112-
.. _PR #339: https://github.com/pypa/build/pull/339
113-
.. _#338: https://github.com/pypa/build/issues/338
80+
- Fix compatibility with Python 3.6 and 3.7 (PR :pr:`339`, Fixes :issue:`338`)
11481

11582

11683

11784
0.6.0 (2021-08-02)
11885
==================
11986

120-
- Improved output (`PR #333`_, Fixes `#142`_)
121-
- The CLI now honors `NO_COLOR`_ (`PR #333`_)
122-
- The CLI can now be forced to colorize the output by setting the ``FORCE_COLOR`` environment variable (`PR #335`_)
123-
- Added logging to ``build`` and ``build.env`` (`PR #333`_)
124-
- Switch to a TOML v1 compliant parser (`PR #336`_, Fixes `#308`_)
125-
87+
- Improved output (PR :pr:`333`, Fixes :issue:`142`)
88+
- The CLI now honors ``NO_COLOR`` (PR :pr:`333`)
89+
- The CLI can now be forced to colorize the output by setting the ``FORCE_COLOR`` environment variable (PR :pr:`335`)
90+
- Added logging to ``build`` and ``build.env`` (PR :pr:`333`)
91+
- Switch to a TOML v1 compliant parser (PR :pr:`336`, Fixes :issue:`308`)
12692

12793
Breaking Changes
12894
----------------
12995

13096
- Dropped support for Python 2 and 3.5.
13197

132-
.. _PR #333: https://github.com/pypa/build/pull/333
133-
.. _PR #335: https://github.com/pypa/build/pull/335
134-
.. _PR #336: https://github.com/pypa/build/pull/336
135-
.. _#142: https://github.com/pypa/build/issues/142
136-
.. _#308: https://github.com/pypa/build/issues/308
137-
.. _NO_COLOR: https://no-color.org
138-
13998

14099

141100
0.5.1 (2021-06-22)
142101
==================
143102

144-
- Fix invoking the backend on an inexistent output directory with multiple levels (`PR #318`_, Fixes `#316`_)
145-
- When building wheels via sdists, use an isolated temporary directory (`PR #321`_, Fixes `#320`_)
146-
147-
.. _PR #318: https://github.com/pypa/build/pull/318
148-
.. _PR #321: https://github.com/pypa/build/pull/321
149-
.. _#316: https://github.com/pypa/build/issues/316
150-
.. _#320: https://github.com/pypa/build/issues/320
103+
- Fix invoking the backend on an inexistent output directory with multiple levels (PR :pr:`318`, Fixes :issue:`316`)
104+
- When building wheels via sdists, use an isolated temporary directory (PR :pr:`321`, Fixes :issue:`320`)
151105

152106

153107

154108
0.5.0 (2021-06-19)
155109
==================
156110

157-
- Add ``ProjectBuilder.metadata_path`` helper (`PR #303`_, Fixes `#301`_)
158-
- Added a ``build.__main__.build_package_via_sdist`` method (`PR #304`_)
159-
- Use appropriate installation scheme for Apple Python venvs (`PR #314`_, Fixes `#310`_)
111+
- Add ``ProjectBuilder.metadata_path`` helper (PR :pr:`303`, Fixes :issue:`301`)
112+
- Added a ``build.__main__.build_package_via_sdist`` method (PR :pr:`304`)
113+
- Use appropriate installation scheme for Apple Python venvs (PR :pr:`314`, Fixes :issue:`310`)
160114

161115
Breaking Changes
162116
----------------
163117

164-
- Binary distributions are now built via the sdist by default in the CLI (`PR #304`_, Fixes `#257`_)
118+
- Binary distributions are now built via the sdist by default in the CLI (PR :pr:`304`, Fixes :issue:`257`)
165119
- ``python -m build`` will now build a sdist, extract it, and build a wheel from the source
166-
- As a side-effect of `PR #304`_, ``build.__main__.build_package`` no longer does CLI error handling (print nice message and exit the program)
167-
- Importing ``build.__main__`` no longer has any side-effects, it no longer overrides ``warnings.showwarning`` or runs ``colorama.init`` on import (`PR #312`_)
168-
169-
.. _PR #303: https://github.com/pypa/build/pull/303
170-
.. _PR #304: https://github.com/pypa/build/pull/304
171-
.. _PR #312: https://github.com/pypa/build/pull/312
172-
.. _PR #314: https://github.com/pypa/build/pull/314
173-
.. _#257: https://github.com/pypa/build/issues/257
174-
.. _#301: https://github.com/pypa/build/issues/301
175-
.. _#310: https://github.com/pypa/build/issues/310
120+
- As a side-effect of PR :pr:`304`, ``build.__main__.build_package`` no longer does CLI error handling (print nice message and exit the program)
121+
- Importing ``build.__main__`` no longer has any side-effects, it no longer overrides ``warnings.showwarning`` or runs ``colorama.init`` on import (PR :pr:`312`)
176122

177123

178124

179125
0.4.0 (2021-05-23)
180126
==================
181127

182-
- Validate that the supplied source directory is valid (`PR #260`_, Fixes `#259`_)
183-
- Set and test minimum versions of build's runtime dependencies (`PR #267`_, Fixes `#263`_)
184-
- Use symlinks on creating venv's when available (`PR #274`_, Fixes `#271`_)
185-
- Error sooner if pip upgrade is required and fails (`PR #288`_, Fixes `#256`_)
186-
- Add a ``runner`` argument to ``ProjectBuilder`` (`PR #290`_, Fixes `#289`_)
187-
- Hide irrelevant ``pep517`` error traceback and improve error messages (`PR #296`_)
188-
- Try to use ``colorama`` to fix colors on Windows (`PR #300`_)
189-
190-
.. _PR #260: https://github.com/pypa/build/pull/260
191-
.. _PR #267: https://github.com/pypa/build/pull/267
192-
.. _PR #274: https://github.com/pypa/build/pull/274
193-
.. _PR #288: https://github.com/pypa/build/pull/288
194-
.. _PR #290: https://github.com/pypa/build/pull/290
195-
.. _PR #296: https://github.com/pypa/build/pull/296
196-
.. _PR #300: https://github.com/pypa/build/pull/300
197-
.. _#256: https://github.com/pypa/build/issues/256
198-
.. _#259: https://github.com/pypa/build/issues/259
199-
.. _#263: https://github.com/pypa/build/issues/263
200-
.. _#271: https://github.com/pypa/build/issues/271
201-
.. _#289: https://github.com/pypa/build/issues/289
128+
- Validate that the supplied source directory is valid (PR :pr:`260`, Fixes :issue:`259`)
129+
- Set and test minimum versions of build's runtime dependencies (PR :pr:`267`, Fixes :issue:`263`)
130+
- Use symlinks on creating venv's when available (PR :pr:`274`, Fixes :issue:`271`)
131+
- Error sooner if pip upgrade is required and fails (PR :pr:`288`, Fixes :issue:`256`)
132+
- Add a ``runner`` argument to ``ProjectBuilder`` (PR :pr:`290`, Fixes :issue:`289`)
133+
- Hide irrelevant ``pep517`` error traceback and improve error messages (PR :pr:`296`)
134+
- Try to use ``colorama`` to fix colors on Windows (PR :pr:`300`)
202135

203136
Breaking Changes
204137
----------------
205138

206-
- As a side-effect of `PR #260`_, projects not containing either a ``pyproject.toml`` or ``setup.py`` will be reported as invalid. This affects projects specifying only a ``setup.cfg``, such projects are recommended to add a ``pyproject.toml``. The new behavior is on par with what pip currently does, so if you are affected by this, your project should not be pip installable.
207-
- The ``--skip-dependencies`` option has been renamed to ``--skip-dependency-check`` (`PR #297`_)
208-
- The ``skip_dependencies`` argument of ``build.__main__.build_package`` has been renamed to ``skip_dependency_check`` (`PR #297`_)
209-
- ``build.ConfigSettings`` has been renamed to ``build.ConfigSettingsType`` (`PR #298`_)
210-
- ``build.ProjectBuilder.build_dependencies`` to ``build.ProjectBuilder.build_system_requires`` (`PR #284`_, Fixes `#182`_)
211-
- ``build.ProjectBuilder.get_dependencies`` to ``build.ProjectBuilder.get_requires_for_build`` (`PR #284`_, Fixes `#182`_)
212-
213-
.. _PR #284: https://github.com/pypa/build/pull/284
214-
.. _PR #297: https://github.com/pypa/build/pull/297
215-
.. _PR #298: https://github.com/pypa/build/pull/298
216-
.. _#182: https://github.com/pypa/build/issues/182
139+
- As a side-effect of PR :pr:`260`, projects not containing either a ``pyproject.toml`` or ``setup.py`` will be reported as invalid. This affects projects specifying only a ``setup.cfg``, such projects are recommended to add a ``pyproject.toml``. The new behavior is on par with what pip currently does, so if you are affected by this, your project should not be pip installable.
140+
- The ``--skip-dependencies`` option has been renamed to ``--skip-dependency-check`` (PR :pr:`297`)
141+
- The ``skip_dependencies`` argument of ``build.__main__.build_package`` has been renamed to ``skip_dependency_check`` (PR :pr:`297`)
142+
- ``build.ConfigSettings`` has been renamed to ``build.ConfigSettingsType`` (PR :pr:`298`)
143+
- ``build.ProjectBuilder.build_dependencies`` to ``build.ProjectBuilder.build_system_requires`` (PR :pr:`284`, Fixes :issue:`182`)
144+
- ``build.ProjectBuilder.get_dependencies`` to ``build.ProjectBuilder.get_requires_for_build`` (PR :pr:`284`, Fixes :issue:`182`)
217145

218146

219147

220148
0.3.1 (2021-03-09)
221149
==================
222150

223-
- Support direct usage from pipx run in 0.16.1.0+ (`PR #247`_)
224-
- Use UTF-8 encoding when reading pyproject.toml (`PR #251`_, Fixes `#250`_)
225-
226-
.. _PR #247: https://github.com/pypa/build/pull/247
227-
.. _PR #251: https://github.com/pypa/build/pull/251
228-
.. _#250: https://github.com/pypa/build/issues/250
151+
- Support direct usage from pipx run in 0.16.1.0+ (PR :pr:`247`)
152+
- Use UTF-8 encoding when reading pyproject.toml (PR :pr:`251`, Fixes :issue:`250`)
229153

230154

231155

232156
0.3.0 (2021-02-19)
233157
==================
234158

235-
- Upgrade pip based on venv pip version, avoids error on Debian Python 3.6.5-3.8 or issues installing wheels on Big Sur (`PR #229`_, `PR #230`_, Fixes `#228`_)
236-
- Build dependencies in isolation, instead of in the build environment (`PR #232`_, Fixes `#231`_)
237-
- Fallback on venv if virtualenv is too old (`PR #241`_)
238-
- Add metadata preparation hook (`PR #217`_, Fixes `#130`_)
239-
240-
.. _PR #217: https://github.com/pypa/build/pull/217
241-
.. _PR #229: https://github.com/pypa/build/pull/229
242-
.. _PR #230: https://github.com/pypa/build/pull/230
243-
.. _PR #232: https://github.com/pypa/build/pull/232
244-
.. _PR #241: https://github.com/pypa/build/pull/241
245-
.. _#130: https://github.com/pypa/build/issues/130
246-
.. _#228: https://github.com/pypa/build/issues/228
247-
.. _#231: https://github.com/pypa/build/issues/231
159+
- Upgrade pip based on venv pip version, avoids error on Debian Python 3.6.5-3.8 or issues installing wheels on Big Sur (PR :pr:`229`, PR :pr:`230`, Fixes :issue:`228`)
160+
- Build dependencies in isolation, instead of in the build environment (PR :pr:`232`, Fixes :issue:`231`)
161+
- Fallback on venv if virtualenv is too old (PR :pr:`241`)
162+
- Add metadata preparation hook (PR :pr:`217`, Fixes :issue:`130`)
248163

249164

250165

251166
0.2.1 (2021-02-09)
252167
==================
253168

254-
- Fix error from unrecognised pip flag on Python 3.6.0 to 3.6.5 (`PR #227`_, Fixes `#226`_)
255-
256-
.. _PR #227: https://github.com/pypa/build/pull/227
257-
.. _#226: https://github.com/pypa/build/issues/226
169+
- Fix error from unrecognised pip flag on Python 3.6.0 to 3.6.5 (PR :pr:`227`, Fixes :issue:`226`)
258170

259171

260172

261173
0.2.0 (2021-02-07)
262174
==================
263175

264-
- Check dependencies recursively (`PR #183`_, Fixes `#25`_)
265-
- Build wheel and sdist distributions in separate environments, as they may have different dependencies (`PR #195`_, Fixes `#194`_)
266-
- Add support for pre-releases in ``check_dependency`` (`PR #204`_, Fixes `#191`_)
267-
- Fixes console scripts not being available during build (`PR #221`_, Fixes `#214`_)
268-
- Do not add the default backend requirements to ``requires`` when no backend is specified (`PR #177`_, Fixes `#107`_)
269-
- Return the sdist name in ``ProjectBuild.build`` (`PR #197`_)
270-
- Improve documentation (`PR #178`_, `PR #203`_)
271-
- Add changelog (`PR #219`_, Fixes `#169`_)
176+
- Check dependencies recursively (PR :pr:`183`, Fixes :issue:`25`)
177+
- Build wheel and sdist distributions in separate environments, as they may have different dependencies (PR :pr:`195`, Fixes :issue:`194`)
178+
- Add support for pre-releases in ``check_dependency`` (PR :pr:`204`, Fixes :issue:`191`)
179+
- Fixes console scripts not being available during build (PR :pr:`221`, Fixes :issue:`214`)
180+
- Do not add the default backend requirements to ``requires`` when no backend is specified (PR :pr:`177`, Fixes :issue:`107`)
181+
- Return the sdist name in ``ProjectBuild.build`` (PR :pr:`197`)
182+
- Improve documentation (PR :pr:`178`, PR :pr:`203`)
183+
- Add changelog (PR :pr:`219`, Fixes :issue:`169`)
272184

273185
Breaking changes
274186
----------------
275187

276-
- Move ``config_settings`` argument to the hook calls (`PR #218`_, Fixes `#216`_)
277-
278-
.. _PR #177: https://github.com/pypa/build/pull/177
279-
.. _PR #178: https://github.com/pypa/build/pull/178
280-
.. _PR #183: https://github.com/pypa/build/pull/183
281-
.. _PR #195: https://github.com/pypa/build/pull/195
282-
.. _PR #197: https://github.com/pypa/build/pull/197
283-
.. _PR #203: https://github.com/pypa/build/pull/203
284-
.. _PR #204: https://github.com/pypa/build/pull/204
285-
.. _PR #218: https://github.com/pypa/build/pull/218
286-
.. _PR #219: https://github.com/pypa/build/pull/219
287-
.. _PR #221: https://github.com/pypa/build/pull/221
288-
.. _#25: https://github.com/pypa/build/issues/25
289-
.. _#107: https://github.com/pypa/build/issues/107
290-
.. _#109: https://github.com/pypa/build/issues/109
291-
.. _#169: https://github.com/pypa/build/issues/169
292-
.. _#191: https://github.com/pypa/build/issues/191
293-
.. _#194: https://github.com/pypa/build/issues/194
294-
.. _#214: https://github.com/pypa/build/issues/214
295-
.. _#216: https://github.com/pypa/build/issues/216
188+
- Move ``config_settings`` argument to the hook calls (PR :pr:`218`, Fixes :issue:`216`)
296189

297190

298191

docs/conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
'sphinx.ext.intersphinx',
3636
'sphinx_autodoc_typehints',
3737
'sphinx_argparse_cli',
38+
'sphinx_issues',
3839
]
3940

4041
intersphinx_mapping = {
@@ -70,3 +71,6 @@
7071
# https://github.com/python/importlib_metadata/issues/316
7172
('py:class', 'importlib.metadata._meta.PackageMetadata'),
7273
]
74+
75+
76+
issues_github_path = 'pypa/build'

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ docs = [
4545
"sphinx ~= 6.0",
4646
"sphinx-argparse-cli >= 1.5",
4747
"sphinx-autodoc-typehints >= 1.10",
48+
"sphinx-issues >= 3.0.0",
4849
]
4950
test = [
5051
"filelock >= 3",

0 commit comments

Comments
 (0)