Skip to content

Commit dcbfbc4

Browse files
Require sphinx>=4.2 (cleanup) (#421)
1 parent 3513a71 commit dcbfbc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numpydoc/numpydoc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
from sphinx.util import logging
3131
from sphinx.errors import ExtensionError
3232

33-
if sphinx.__version__ < "3.0":
34-
raise RuntimeError("Sphinx 3.0 or newer is required")
33+
if sphinx.__version__ < "4.2":
34+
raise RuntimeError("Sphinx 4.2 or newer is required")
3535

3636
from .docscrape_sphinx import get_doc_object
3737
from .validate import validate, ERROR_MSGS

0 commit comments

Comments
 (0)