Skip to content

Commit c2a6b92

Browse files
Update sphinx to ~=8.2, sphinx-rtd-theme to ~=3.0.2 (#177)
Updates the requirements on [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) to permit the latest version. - [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst) - [Commits](readthedocs/sphinx_rtd_theme@1.3.0...3.0.2) --- updated-dependencies: - dependency-name: sphinx dependency-version: 8.2 dependency-type: direct:development - dependency-name: sphinx-rtd-theme dependency-version: 3.0.2 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rob Brackett <rob@robbrackett.com>
1 parent 6b727f1 commit c2a6b92

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ jobs:
112112
docs:
113113
working_directory: ~/wayback
114114
docker:
115-
- image: cimg/python:3.13
115+
- image: cimg/python:3.14
116116
steps:
117117
- checkout
118118
- setup_pip:
119-
python-version: "3.13"
119+
python-version: "3.14"
120120
install-docs: true
121121
- run:
122122
name: Build docs

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ formats: all
1414

1515
# Optionally set the version of Python and requirements required to build your docs
1616
build:
17-
os: ubuntu-22.04
17+
os: ubuntu-24.04
1818
tools:
19-
python: "3.13"
19+
python: "3.14"
2020

2121
python:
2222
install:

docs/source/conf.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
'IPython.sphinxext.ipython_console_highlighting',
4444
'numpydoc',
4545
'sphinx_copybutton',
46+
'sphinx_rtd_theme',
4647
]
4748

4849
# Generate the API documentation when building
@@ -108,8 +109,6 @@
108109
# a list of builtin themes.
109110
#
110111
html_theme = 'sphinx_rtd_theme'
111-
import sphinx_rtd_theme
112-
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
113112

114113
# Theme options are theme-specific and customize the look and feel of a theme
115114
# further. For a list of options available for each theme, see the

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ dev = [
4040
# versions < 3.10 (which we support), so you have to install them in a separate
4141
# environment from the other dev dependencies.
4242
docs = [
43-
"sphinx ~=7.2.6",
43+
"sphinx ~=8.2",
4444
"ipython ~=8.37.0",
4545
"numpydoc ~=1.10.0",
4646
"sphinx-copybutton ~=0.5.2",
47-
"sphinx_rtd_theme ~=1.3.0",
47+
"sphinx_rtd_theme ~=3.0.2",
4848
]
4949
# For running tests.
5050
test = [

0 commit comments

Comments
 (0)