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
4 changes: 2 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~
Expand Down Expand Up @@ -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
~~~~~
Expand Down
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]

Expand Down
2 changes: 1 addition & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading