Skip to content

Commit

Permalink
Merge pull request #22 from devolo/sphinx_build
Browse files Browse the repository at this point in the history
Fix Sphinx build
  • Loading branch information
Markus Bong authored Mar 23, 2021
2 parents 5074033 + b8507b4 commit 902a5c2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.0.1] - 2021/03/23

### Fixed

- Docs build

## [v1.0.0] - 2021/03/23

### Added
Expand Down
20 changes: 10 additions & 10 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,42 +14,42 @@
import sys
from pkg_resources import get_distribution

sys.path.insert(0, os.path.abspath('../'))
sys.path.insert(0, os.path.abspath("../"))

version = get_distribution(__package__).version
version = get_distribution("ssllabs").version

# -- Project information -----------------------------------------------------

project = get_distribution(__package__).project_name
copyright = '2021, devolo AG'
author = 'Markus Bong, Guido Schmitz'
project = get_distribution("ssllabs").project_name
copyright = "2021, devolo AG"
author = "Markus Bong, Guido Schmitz"

# -- General configuration ---------------------------------------------------

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# extensions coming with Sphinx (named "sphinx.ext.*") or your custom
# ones.
extensions = ["sphinx.ext.autosummary", "m2r2"]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', "README.md"]
exclude_patterns = ["_build", "README.md"]

# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'pydata_sphinx_theme'
html_theme = "pydata_sphinx_theme"
html_theme_options = {
"github_url": "https://github.com/devolo/ssllabs",
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
# html_static_path = ['_static']
# html_static_path = ["_static"]

0 comments on commit 902a5c2

Please sign in to comment.