File tree Expand file tree Collapse file tree 8 files changed +975
-0
lines changed Expand file tree Collapse file tree 8 files changed +975
-0
lines changed Original file line number Diff line number Diff line change 22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
- uses : actions/checkout@v4
25
+ - uses : pandoc/actions/setup@v1
25
26
- uses : actions/setup-python@v5
26
27
with :
27
28
# Keep in sync with .readthedocs.yaml
Original file line number Diff line number Diff line change 32
32
uses : actions/checkout@v4
33
33
- name : Install packages
34
34
run : sudo apt install plantuml
35
+ - name : Setup pandoc
36
+ uses : pandoc/actions/setup@v1
35
37
- name : Setup python
36
38
uses : actions/setup-python@v5
37
39
with :
Original file line number Diff line number Diff line change 39
39
# Add any Sphinx extension module names here, as strings. They can be
40
40
# extensions coming with Sphinx (named "sphinx.ext.*") or your custom ones.
41
41
extensions = [
42
+ "nbsphinx" ,
42
43
"pygments_pytest" ,
43
44
"sphinx.ext.autodoc" ,
44
45
"sphinx.ext.viewcode" ,
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ Follow us on…
119
119
packs/index
120
120
oop/index
121
121
save-data/index
122
+ logging/index
122
123
test/index
123
124
document/index
124
125
appendix/index
Original file line number Diff line number Diff line change
1
+ ; SPDX-FileCopyrightText: 2021 Veit Schiele
2
+ ;
3
+ ; SPDX-License-Identifier: BSD-3-Clause
4
+
5
+ [loggers]
6
+ keys =root
7
+
8
+ [handlers]
9
+ keys =stream_handler
10
+
11
+ [formatters]
12
+ keys =formatter
13
+
14
+ [logger_root]
15
+ level =DEBUG
16
+ handlers =stream_handler
17
+
18
+ [handler_stream_handler]
19
+ class =StreamHandler
20
+ level =DEBUG
21
+ formatter =formatter
22
+ args =(sys.stderr,)
23
+
24
+ [formatter_formatter]
25
+ format =%(asctime)s %(name)-12s %(levelname)-8s %(message)s
You can’t perform that action at this time.
0 commit comments