Skip to content

Commit e4275c0

Browse files
committed
Increase version to 3.8.2
1 parent 7b0b3e8 commit e4275c0

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

docs/conf.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112

113113
# The theme to use for HTML and HTML Help pages. See the documentation for
114114
# a list of builtin themes.
115-
html_theme = 'default'
115+
html_theme = 'sphinx_rtd_theme'
116116

117117
# Theme options are theme-specific and customize the look and feel of a theme
118118
# further. For a list of options available for each theme, see the
@@ -206,17 +206,6 @@
206206
# Output file base name for HTML help builder.
207207
htmlhelp_basename = 'dependency_injectordoc'
208208

209-
# on_rtd is whether we are on readthedocs.org, this line of code grabbed from
210-
# docs.readthedocs.org
211-
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
212-
213-
if not on_rtd: # only import and set the theme if we're building docs locally
214-
import sphinx_rtd_theme
215-
html_theme = 'sphinx_rtd_theme'
216-
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
217-
# otherwise, readthedocs.org uses their theme by default, so no need to
218-
# specify it
219-
220209
# -- Options for LaTeX output ---------------------------------------------
221210

222211
latex_elements = {

docs/main/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ that were made in every particular version.
77
From version 0.7.6 *Dependency Injector* framework strictly
88
follows `Semantic versioning`_
99

10+
3.8.2
11+
-----
12+
- Fix padding problem in code samples in docs (part 2).
13+
1014
3.8.1
1115
-----
1216
- Fix padding problem in code samples in docs.

src/dependency_injector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Dependency injector top-level package."""
22

3-
__version__ = '3.8.1'
3+
__version__ = '3.8.2'
44
"""Version number that follows semantic versioning.
55
66
:type: str

0 commit comments

Comments
 (0)