Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
!.travis*
!.appveyor*
!.git*
!.readthedocs.yml
!.readthedocs.yaml

# Python
/dist
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml → .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sphinx:
configuration: doc/source/conf.py

python:
version: 3.7
version: 3.9
install:
- method: pip
path: .
Expand Down
3 changes: 1 addition & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import urllib.request

import lxml

from docutils.nodes import reference
from packaging.version import parse
from sphinx.errors import ExtensionError
Expand Down Expand Up @@ -35,7 +34,7 @@
pygments_style = 'sphinx'
todo_include_todos = False

html_theme = 'nature'
html_theme = 'furo'
html_static_path = []
htmlhelp_basename = 'python-xmlsecdoc'

Expand Down
1 change: 1 addition & 0 deletions doc/source/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ lxml>=3.8
importlib_metadata;python_version < '3.8'
packaging
Sphinx>=3
furo>=2021.4.11b34