File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 22Change log
33**********
44
5+ 0.5.0
6+ #####
7+
8+ * Add HTML tests to avoid regressions.
9+ Patch by Mike McKiernan in https://github.com/sphinx-doc/sphinx-argparse/pull/33
10+ * Escape reStructuredText special characters in the default value.
11+ Patch by Robert Roos.
12+ * Fix the options formatter for manpages.
13+ Patch by Felix Moessbauer in https://github.com/sphinx-doc/sphinx-argparse/pull/50
14+ * Handle ``None `` return from :py:func: `shutil.which `.
15+ Patch by Om Vats in https://github.com/sphinx-doc/sphinx-argparse/pull/52
16+ * Drop support for Python 3.7, 3.8, and 3.9.
17+ Patch by Adam Turner.
18+ * Adopt `Flit <https://flit.pypa.io/ >`_ for packaging.
19+ Patch by Adam Turner.
20+ * Make argument and option section IDs more unique.
21+ Patch by David Hoese in https://github.com/sphinx-doc/sphinx-argparse/pull/44
22+ * Fix cases where a suppressed default was visible.
23+ Patch by Michele Riva in https://github.com/sphinx-doc/sphinx-argparse/pull/53
24+ * Support ``autodoc_mock_imports ``.
25+ Patch by Adam Turner and Prajeesh Ag in https://github.com/sphinx-doc/sphinx-argparse/pull/35
26+
5270.4.0
628#####
729
Original file line number Diff line number Diff line change 22extensions = [
33 'sphinx.ext.autodoc' ,
44 'sphinx.ext.coverage' ,
5+ 'sphinx.ext.intersphinx' ,
56 'sphinx.ext.viewcode' ,
67 'sphinxarg.ext' ,
78]
1112copyright = '2017, Alex Rudakov, Devon Ryan, and contributors'
1213release = version = '0.2.5'
1314
15+ # -- Options for intersphinx ---------------------------------------------------
16+
17+ intersphinx_mapping = {
18+ 'python' : ('https://docs.python.org/3/' , None ),
19+ }
20+
1421# -- Options for HTML output ---------------------------------------------------
1522
1623html_theme = 'furo'
You can’t perform that action at this time.
0 commit comments