File tree 4 files changed +25
-5
lines changed
4 files changed +25
-5
lines changed Original file line number Diff line number Diff line change
1
+ # .readthedocs.yml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version : 2
7
+
8
+ # Build documentation in the docs/ directory with Sphinx
9
+ sphinx :
10
+ configuration : sphinx/conf.py
11
+
12
+
13
+ # Optionally set the version of Python and requirements required to build your docs
14
+ python :
15
+ version : 3.8
16
+ install :
17
+ - requirements : sphinx/requirements.txt
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 16
16
17
17
import sys , os
18
18
import sphinx_bootstrap_theme
19
+ from fdb import __version__
19
20
20
21
# If your extensions are in another directory, add it here. If the directory
21
22
# is relative to the documentation root, use os.path.abspath to make it
43
44
44
45
# General information about the project.
45
46
project = u'FDB'
46
- copyright = u'2009-2021 Pavel Cisar'
47
+ copyright = u'2009-present Pavel Cisar'
47
48
48
49
# The version info for the project you're documenting, acts as replacement for
49
50
# |version| and |release|, also used in various other places throughout the
50
51
# built documents.
51
52
#
52
53
# The short X.Y version.
53
- version = '2.0.2'
54
+ version = __version__
54
55
# The full version, including alpha/beta/rc tags.
55
- release = '2.0.2'
56
+ release = __version__
56
57
57
58
# The language for content autogenerated by Sphinx. Refer to documentation
58
59
# for a list of supported languages.
Original file line number Diff line number Diff line change
1
+ sphinx-bootstrap-theme >= 0.8.1
2
+ sphinx-autodoc-typehints >= 1.24.0
3
+ sphinx >= 5.3
4
+ .
You can’t perform that action at this time.
0 commit comments