Skip to content

Commit b3ce880

Browse files
authored
FIX: doc-searching (#384)
* Try to fix doc searching * changelog
1 parent 1ea4a96 commit b3ce880

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
# Required
99
version: 2
1010
build:
11-
os: "ubuntu-22.04"
11+
os: "ubuntu-24.04"
1212
tools:
13-
python: "3.11"
13+
python: "3.13"
1414
sphinx:
1515
configuration: docs/source/conf.py
1616
formats: all

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Changes
66
* FIX: ref-count leaks #372
77
* ENH: Add support for building ABI3 wheels
88
* FIX: mitigate speed regressions introduced in 5.0.0
9+
* ENH: Added capability to combine profiling data both programmatically (``LineStats.__add__()``) and via the CLI (``python -m line_profiler``) (#380, originally proposed in #219)
10+
* FIX: search function in online documentation
911

1012
5.0.0
1113
~~~~~
@@ -54,7 +56,6 @@ Changes
5456
* ``kernprof`` and ``python -m line_profiler`` CLI options
5557
* ``GlobalProfiler`` configurations, and
5658
* profiler output (e.g. ``LineProfiler.print_stats()``) formatting
57-
* ENH: Added capability to combine profiling data both programmatically (``LineStats.__add__()``) and via the CLI (``python -m line_profiler``) (#380, originally proposed in #219)
5859

5960
4.2.0
6061
~~~~~

docs/source/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ def visit_Assign(self, node):
173173
'sphinx.ext.imgconverter', # For building latexpdf
174174
'sphinx.ext.githubpages',
175175
# 'sphinxcontrib.redirects',
176+
'sphinxcontrib.jquery', # Fix for search
176177
'sphinx_reredirects',
177178
]
178179

requirements/docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sphinx >= 5.0.1
22
sphinx-autobuild >= 2021.3.14
3-
sphinx_rtd_theme >= 1.0.0
3+
sphinx_rtd_theme >= 1.2.1
44
sphinxcontrib-napoleon >= 0.7
55
sphinx-autoapi >= 1.8.4
66
Pygments >= 2.9.0

0 commit comments

Comments
 (0)