diff --git a/docs/conf.py b/docs/conf.py index 8a6452d1..ad266d5b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -120,7 +120,7 @@ #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +html_theme_path = ['_themes'] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 8e834b0a..50ee3c10 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,6 +7,11 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ +3.11.2 +------ +- Fix padding problem in code samples in docs. +- Remove ``autodoc`` from the list of documentation dependencies. + 3.11.1 ------ - Fix small typo in documentation (thanks to James Lafa). diff --git a/requirements-dev.txt b/requirements-dev.txt index e2752a4e..537818f7 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,3 +4,4 @@ unittest2 coverage flake8 pydocstyle +sphinx_autobuild diff --git a/requirements-doc.txt b/requirements-doc.txt index 5378d2c3..921bae57 100644 --- a/requirements-doc.txt +++ b/requirements-doc.txt @@ -1,5 +1,3 @@ sphinx +sphinx_rtd_theme==0.2.5b2 -e git://github.com/rmk135/sphinxcontrib-disqus.git#egg=sphinxcontrib-disqus -sphinx_autobuild -sphinxcontrib-disqus -autodoc diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index f8228f9f..5268b5b0 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Dependency injector top-level package.""" -__version__ = '3.11.1' +__version__ = '3.11.2' """Version number that follows semantic versioning. :type: str