Skip to content

Commit

Permalink
Update sphinx for Python 3.13 support
Browse files Browse the repository at this point in the history
Could not import extension sphinx.builders.epub3 (exception: No module named 'imghdr')

`imghdr` was removed in Python 3.13.
  • Loading branch information
peace-maker committed Dec 8, 2024
1 parent 7dd83a0 commit 75d8189
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ capstone
coverage[toml]
python-dateutil
doc2dash
docutils<0.18
docutils<0.18; python_version<'3'
docutils>=0.18; python_version>='3'
intervaltree
isort
mako>=1.0.0
Expand All @@ -18,6 +19,6 @@ psutil
requests>=2.5.1
ropgadget>=5.3
sphinx==1.8.6; python_version<'3'
sphinx>=4.5.0; python_version>='3'
sphinx>=7.0.0; python_version>='3'
sphinx_rtd_theme
sphinxcontrib-autoprogram<=0.1.5

0 comments on commit 75d8189

Please sign in to comment.