Skip to content

Commit e384fce

Browse files
authored
Move changelog to GH releases (#141)
1 parent 0a41076 commit e384fce

File tree

4 files changed

+65
-137
lines changed

4 files changed

+65
-137
lines changed

docs/api.rst

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
2+
API
3+
+++
4+
5+
.. currentmodule:: pyproject_api
6+
7+
.. autodata:: __version__
8+
9+
Frontend
10+
--------
11+
.. autoclass:: Frontend
12+
13+
.. autoclass:: OptionalHooks
14+
15+
Exceptions
16+
----------
17+
18+
Backend failed
19+
~~~~~~~~~~~~~~
20+
.. autoclass:: BackendFailed
21+
22+
Results
23+
-------
24+
25+
Build source distribution requires
26+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27+
.. autoclass:: RequiresBuildSdistResult
28+
29+
Build wheel requires
30+
~~~~~~~~~~~~~~~~~~~~
31+
.. autoclass:: RequiresBuildWheelResult
32+
33+
Editable requires
34+
~~~~~~~~~~~~~~~~~
35+
.. autoclass:: RequiresBuildEditableResult
36+
37+
Wheel metadata
38+
~~~~~~~~~~~~~~
39+
.. autoclass:: MetadataForBuildWheelResult
40+
41+
Editable metadata
42+
~~~~~~~~~~~~~~~~~
43+
.. autoclass:: MetadataForBuildEditableResult
44+
45+
Source distribution
46+
~~~~~~~~~~~~~~~~~~~
47+
.. autoclass:: SdistResult
48+
49+
Editable
50+
~~~~~~~~
51+
.. autoclass:: EditableResult
52+
53+
Wheel
54+
~~~~~
55+
.. autoclass:: WheelResult
56+
57+
Fresh subprocess frontend
58+
-------------------------
59+
.. autoclass:: SubprocessFrontend

docs/changelog.rst

Lines changed: 0 additions & 77 deletions
This file was deleted.

docs/index.rst

Lines changed: 1 addition & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -3,67 +3,8 @@
33

44
``pyproject-api`` aims to abstract away interaction with ``pyproject.toml`` style projects in a flexible way.
55

6-
API
7-
+++
8-
9-
.. currentmodule:: pyproject_api
10-
11-
.. autodata:: __version__
12-
13-
Frontend
14-
--------
15-
.. autoclass:: Frontend
16-
17-
.. autoclass:: OptionalHooks
18-
19-
Exceptions
20-
----------
21-
22-
Backend failed
23-
~~~~~~~~~~~~~~
24-
.. autoclass:: BackendFailed
25-
26-
Results
27-
-------
28-
29-
Build source distribution requires
30-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31-
.. autoclass:: RequiresBuildSdistResult
32-
33-
Build wheel requires
34-
~~~~~~~~~~~~~~~~~~~~
35-
.. autoclass:: RequiresBuildWheelResult
36-
37-
Editable requires
38-
~~~~~~~~~~~~~~~~~
39-
.. autoclass:: RequiresBuildEditableResult
40-
41-
Wheel metadata
42-
~~~~~~~~~~~~~~
43-
.. autoclass:: MetadataForBuildWheelResult
44-
45-
Editable metadata
46-
~~~~~~~~~~~~~~~~~
47-
.. autoclass:: MetadataForBuildEditableResult
48-
49-
Source distribution
50-
~~~~~~~~~~~~~~~~~~~
51-
.. autoclass:: SdistResult
52-
53-
Editable
54-
~~~~~~~~
55-
.. autoclass:: EditableResult
56-
57-
Wheel
58-
~~~~~
59-
.. autoclass:: WheelResult
60-
61-
Fresh subprocess frontend
62-
-------------------------
63-
.. autoclass:: SubprocessFrontend
64-
656
.. toctree::
667
:hidden:
678

689
self
69-
changelog
10+
api

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ classifiers = [
3838
"Programming Language :: Python :: 3.10",
3939
"Programming Language :: Python :: 3.11",
4040
"Programming Language :: Python :: 3.12",
41+
"Programming Language :: Python :: 3.13",
4142
"Topic :: Software Development :: Libraries",
4243
"Topic :: Software Development :: Testing",
4344
"Topic :: Utilities",
@@ -60,6 +61,7 @@ optional-dependencies.testing = [
6061
"pytest-mock>=3.14",
6162
"setuptools>=70.1",
6263
]
64+
urls.Changelog = "https://github.com/tox-dev/pyproject-api/releases"
6365
urls.Homepage = "https://pyproject-api.readthedocs.io"
6466
urls.Source = "https://github.com/tox-dev/pyproject-api"
6567
urls.Tracker = "https://github.com/tox-dev/pyproject-api/issues"
@@ -122,6 +124,9 @@ builtin = "clear,usage,en-GB_to_en-US"
122124
write-changes = true
123125
count = true
124126

127+
[tool.pyproject-fmt]
128+
max_supported_python = "3.13"
129+
125130
[tool.coverage]
126131
html.show_contexts = true
127132
html.skip_covered = false

0 commit comments

Comments
 (0)