Browse Source

ci: fix docs build

pull/382/head
Richard Nemeth 2 years ago
parent
commit
eda6a2762c
  1. 10
      docs/source/conf.py
  2. 10
      poetry.lock
  3. 6
      pyproject.toml

10
docs/source/conf.py

@ -180,7 +180,15 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [(master_doc, "python-keycloak", "python-keycloak Documentation", [author], 1)]
man_pages = [
(
master_doc,
"python-keycloak",
"python-keycloak Documentation",
[author],
1,
)
]
# -- Options for Texinfo output -------------------------------------------

10
poetry.lock

@ -823,7 +823,7 @@ test = ["cython", "html5lib", "pytest (>=4.6)", "typed_ast"]
[[package]]
name = "sphinx-autoapi"
version = "1.9.0"
version = "2.0.0"
description = "Sphinx API documentation generator"
category = "main"
optional = true
@ -833,7 +833,7 @@ python-versions = ">=3.7"
astroid = ">=2.7"
Jinja2 = "*"
PyYAML = "*"
sphinx = ">=3.0"
sphinx = ">=4.0"
unidecode = "*"
[package.extras]
@ -1085,7 +1085,7 @@ docs = ["mock", "alabaster", "commonmark", "recommonmark", "Sphinx", "sphinx-rtd
[metadata]
lock-version = "1.1"
python-versions = "^3.7"
content-hash = "5d740e81a3604cb20ca85945c2fc134f6373f599315992afb50284f1f993c1d0"
content-hash = "da04d73122fef0b5938fc53dccdc95dbdd245f983ccd02a570c5569d945e89c1"
[metadata.files]
alabaster = [
@ -1629,8 +1629,8 @@ sphinx = [
{file = "sphinx-5.3.0-py3-none-any.whl", hash = "sha256:060ca5c9f7ba57a08a1219e547b269fadf125ae25b06b9fa7f66768efb652d6d"},
]
sphinx-autoapi = [
{file = "sphinx-autoapi-1.9.0.tar.gz", hash = "sha256:c897ea337df16ad0cde307cbdfe2bece207788dde1587fa4fc8b857d1fc5dcba"},
{file = "sphinx_autoapi-1.9.0-py2.py3-none-any.whl", hash = "sha256:d217953273b359b699d8cb81a5a72985a3e6e15cfe3f703d9a3c201ffc30849b"},
{file = "sphinx-autoapi-2.0.0.tar.gz", hash = "sha256:97dcf1b5b54cd0d8efef867594e4a4f3e2d3a2c0ec1e5a891e0a61bc77046006"},
{file = "sphinx_autoapi-2.0.0-py2.py3-none-any.whl", hash = "sha256:dab2753a38cad907bf4e61473c0da365a26bfbe69fbf5aa6e4f7d48e1cf8a148"},
]
sphinx-rtd-theme = [
{file = "sphinx_rtd_theme-1.0.0-py2.py3-none-any.whl", hash = "sha256:4d35a56f4508cfee4c4fb604373ede6feae2a306731d533f409ef5c3496fdbd8"},

6
pyproject.toml

@ -37,11 +37,11 @@ mock = {version = "^4.0.3", optional = true}
alabaster = {version = "^0.7.12", optional = true}
commonmark = {version = "^0.9.1", optional = true}
recommonmark = {version = "^0.7.1", optional = true}
Sphinx = {version = "^5.0.2", optional = true}
Sphinx = {version = "^5.3.0", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
readthedocs-sphinx-ext = {version = "^2.1.8", optional = true}
readthedocs-sphinx-ext = {version = "^2.1.9", optional = true}
m2r2 = {version = "^0.3.2", optional = true}
sphinx-autoapi = {version = "^1.8.4", optional = true}
sphinx-autoapi = {version = "^2.0.0", optional = true}
requests-toolbelt = "^0.9.1"
[tool.poetry.dev-dependencies]

Loading…
Cancel
Save