File tree Expand file tree Collapse file tree 5 files changed +28
-9
lines changed Expand file tree Collapse file tree 5 files changed +28
-9
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
build :
3
- os : ubuntu-20 .04
3
+ os : ubuntu-22 .04
4
4
tools :
5
- python : " 3.10"
6
- formats :
7
- - htmlzip
8
- - epub
9
- - pdf
5
+ python : " 3"
10
6
python :
11
7
install :
12
8
- method : pip
13
9
path : .
14
- extra_requirements : ["docs"]
10
+ extra_requirements :
11
+ - docs
15
12
sphinx :
16
13
builder : html
17
14
configuration : docs/conf.py
Original file line number Diff line number Diff line change 1
1
Release History
2
2
===============
3
3
4
+ v1.1.2 - (2022-10-30)
5
+ ---------------------
6
+ - Fix editable classes not exported at root level
7
+
4
8
v1.1.1 - (2022-09-10)
5
9
---------------------
6
- - Add missed `wheel ` as test dependency
10
+ - Add missed `` wheel ` ` as test dependency
7
11
8
12
v1.1.0 - (2022-09-10)
9
13
---------------------
Original file line number Diff line number Diff line change @@ -32,14 +32,26 @@ Build wheel requires
32
32
~~~~~~~~~~~~~~~~~~~~
33
33
.. autoclass :: RequiresBuildWheelResult
34
34
35
+ Editable requires
36
+ ~~~~~~~~~~~~~~~~~
37
+ .. autoclass :: RequiresBuildEditableResult
38
+
35
39
Wheel metadata
36
40
~~~~~~~~~~~~~~
37
41
.. autoclass :: MetadataForBuildWheelResult
38
42
43
+ Editable metadata
44
+ ~~~~~~~~~~~~~~~~~
45
+ .. autoclass :: MetadataForBuildEditableResult
46
+
39
47
Source distribution
40
48
~~~~~~~~~~~~~~~~~~~
41
49
.. autoclass :: SdistResult
42
50
51
+ Editable
52
+ ~~~~~~~~
53
+ .. autoclass :: EditableResult
54
+
43
55
Wheel
44
56
~~~~~
45
57
.. autoclass :: WheelResult
Original file line number Diff line number Diff line change 3
3
from ._frontend import (
4
4
BackendFailed ,
5
5
CmdStatus ,
6
+ EditableResult ,
6
7
Frontend ,
8
+ MetadataForBuildEditableResult ,
7
9
MetadataForBuildWheelResult ,
10
+ RequiresBuildEditableResult ,
8
11
RequiresBuildSdistResult ,
9
12
RequiresBuildWheelResult ,
10
13
SdistResult ,
23
26
"CmdStatus" ,
24
27
"RequiresBuildSdistResult" ,
25
28
"RequiresBuildWheelResult" ,
29
+ "RequiresBuildEditableResult" ,
26
30
"MetadataForBuildWheelResult" ,
31
+ "MetadataForBuildEditableResult" ,
27
32
"SdistResult" ,
28
33
"WheelResult" ,
34
+ "EditableResult" ,
29
35
"SubprocessFrontend" ,
30
36
]
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ description = build documentation
58
58
extras =
59
59
docs
60
60
commands =
61
- sphinx-build -d " {envtmpdir}{/}doctree" docs " {toxworkdir}{/}docs_out" --color -b html {posargs}
61
+ sphinx-build -d " {envtmpdir}{/}doctree" docs " {toxworkdir}{/}docs_out" --color -b html {posargs} -W
62
62
python -c ' print(r"documentation available under file://{toxworkdir}{/}docs_out{/}index.html")'
63
63
64
64
[testenv:pkg_meta]
You can’t perform that action at this time.
0 commit comments