File: sphinx.ext.autodoc

package info (click to toggle)
texext 0.6.7-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 760 kB
  • sloc: python: 1,946; makefile: 15
file content (29 lines) | stat: -rw-r--r-- 907 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 8c531c0173a016c47538f77c7a289ba0954ef037 Mon Sep 17 00:00:00 2001
From: Jerry James <loganjerry@gmail.com>
Date: Wed, 19 Mar 2025 19:12:08 -0600
Subject: [PATCH] Use sphinx.ext.autodoc in tests

---
 texext/tests/plotdirective/conf.py | 1 +
 texext/tests/tinypages/conf.py     | 1 +
 2 files changed, 2 insertions(+)

--- texext.orig/texext/tests/plotdirective/conf.py
+++ texext/texext/tests/plotdirective/conf.py
@@ -32,6 +32,7 @@
 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 # ones.
 extensions = [
+    'sphinx.ext.autodoc',
     'sphinx.ext.mathjax',
     'matplotlib.sphinxext.plot_directive',
     'texext.mathcode']
--- texext.orig/texext/tests/tinypages/conf.py
+++ texext/texext/tests/tinypages/conf.py
@@ -1,5 +1,6 @@
 # -*- coding: utf-8 -*-
 extensions = [
+    'sphinx.ext.autodoc',
     'sphinx.ext.mathjax',
     'texext.mathcode',
     'texext.math_dollar']