./textproc/py-sphinx-autoapi, Autodoc style documentation for multiple languages

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 3.4.0, Package name: py312-sphinx-autoapi-3.4.0, Maintainer: minskim

Sphinx AutoAPI provides "autodoc" style documentation for multiple
programming languages without needing to load, run, or import the
project being documented.


Required to run:
[textproc/py-yaml] [textproc/py-sphinx] [textproc/py-jinja2] [textproc/py-Unidecode] [devel/py-astroid] [lang/python310]

Master sites:

Filesize: 28.605 KB

Version history: (Expand)


CVS history: (Expand)


   2024-12-06 11:49:16 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-sphinx-autoapi: updated to 3.4.0

3.4.0

Features

NamedTuples that have been created with functional syntax are documented as a class
   2024-11-01 01:24:44 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
py-sphinx-autoapi: update to 3.3.3.

v3.3.3 (2024-10-25)

Bugfixes

    Document packages and modules under a single "submodules" heading \ 
(#450)
    Fix crash when __init__ is assigned to (#488)
    Fix documenting incorrect attributes from __init__ (#497)
   2024-10-19 13:14:17 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
py-sphinx-autoapi: update to 3.3.2.

v3.3.2 (2024-09-25)
-------------------

Bugfixes
^^^^^^^^

- Fix types missing from documentation generated by autodoc-style directives. (#473)
   2024-10-14 08:46:10 by Thomas Klausner | Files touched by this commit (325)
Log message:
*: clean-up after python38 removal
   2024-09-13 11:36:53 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
py-sphinx-autoapi: update to 3.3.1.

v3.3.1 (2024-09-01)
-------------------

Bugfixes
^^^^^^^^

- Fix all class members missing when documenting a module with the same name as \ 
a standard library module

  Members inherited from the standard library can also have their skip value
  overridden by autoapi-skip-member. (#478)

Misc
^^^^

- Updated all github actions.

v3.3.0 (2024-08-28)
-------------------

Features
^^^^^^^^

- Do not document members inherited from standard library classes. (#467)

Bugfixes
^^^^^^^^

- Fix instance attributes not being documented by inherited-members (#477)

Misc
^^^^

- #425
- Fix the parser returning a dictionary instead of a list in the empty parse scenario
- Rename testenvs to all follow similar naming style
   2024-08-10 10:11:07 by Adam Ciarcinski | Files touched by this commit (1)
Log message:
py-sphinx-autoapi: not for Python 3.9
   2024-07-29 09:26:08 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
py-sphinx-autoapi: update to 3.2.1.

Fix error or duplicates definitions when __init__ assigns to a property (#466)
   2024-07-21 11:28:20 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
py-sphinx-autoapi: update to 3.2.0.

v3.2.0 (2024-07-20)
-------------------

Features
^^^^^^^^

- functools.cached_property is considered a property (#436)

Bugfixes
^^^^^^^^

- Gracefully handle no objects being rendered (#448)
- Fix ignoring undocumented instance attributes (#451)

Deprecations and Removals
^^^^^^^^^^^^^^^^^^^^^^^^^

- Removed ability for autoapi_template_dir to be relative to cwd. This was \ 
supposed to have been retired in v3 (#457)
- Removed autoapi_include_summaries option. This was supposed to have been \ 
retired in v3

Misc
^^^^

- #428, #449