diff --git a/.readthedocs.yml b/.readthedocs.yml index 8bafb9dc..1c728dac 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -8,9 +8,9 @@ # Required version: 2 build: - os: "ubuntu-22.04" + os: "ubuntu-24.04" tools: - python: "3.11" + python: "3.13" sphinx: configuration: docs/source/conf.py formats: all diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ef416bdd..00c13fb8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,8 @@ Changes * FIX: ref-count leaks #372 * ENH: Add support for building ABI3 wheels * FIX: mitigate speed regressions introduced in 5.0.0 +* ENH: Added capability to combine profiling data both programmatically (``LineStats.__add__()``) and via the CLI (``python -m line_profiler``) (#380, originally proposed in #219) +* FIX: search function in online documentation 5.0.0 ~~~~~ @@ -54,7 +56,6 @@ Changes * ``kernprof`` and ``python -m line_profiler`` CLI options * ``GlobalProfiler`` configurations, and * profiler output (e.g. ``LineProfiler.print_stats()``) formatting -* ENH: Added capability to combine profiling data both programmatically (``LineStats.__add__()``) and via the CLI (``python -m line_profiler``) (#380, originally proposed in #219) 4.2.0 ~~~~~ diff --git a/docs/source/conf.py b/docs/source/conf.py index 2627e8bd..e9328ff9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -173,6 +173,7 @@ def visit_Assign(self, node): 'sphinx.ext.imgconverter', # For building latexpdf 'sphinx.ext.githubpages', # 'sphinxcontrib.redirects', + 'sphinxcontrib.jquery', # Fix for search 'sphinx_reredirects', ] diff --git a/requirements/docs.txt b/requirements/docs.txt index 57d0dabc..c5f1c003 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,6 +1,6 @@ sphinx >= 5.0.1 sphinx-autobuild >= 2021.3.14 -sphinx_rtd_theme >= 1.0.0 +sphinx_rtd_theme >= 1.2.1 sphinxcontrib-napoleon >= 0.7 sphinx-autoapi >= 1.8.4 Pygments >= 2.9.0