| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python313-sphinx-autodoc-typehints | Distribution: SUSE Linux 16 |
| Version: 3.1.0 | Vendor: SUSE LLC <https://www.suse.com/> |
| Release: 160000.2.2 | Build date: Thu Apr 3 14:55:29 2025 |
| Group: Development/Languages/Python | Build host: reproducible |
| Size: 130342 | Source RPM: python-sphinx-autodoc-typehints-3.1.0-160000.2.2.src.rpm |
| Packager: https://www.suse.com/ | |
| Url: https://github.com/tox-dev/sphinx-autodoc-typehints | |
| Summary: Type hints (PEP 484) support for the Sphinx autodoc extension | |
This is a Sphinx extension which allows to use Python 3 annotations for documenting acceptable argument types and return value types of functions.
MIT
* Thu Apr 03 2025 mcepl@cepl.eu
- Update to 3.1.0:
- Support Sphinx 8.2.0 - drop 3.10 support because Sphinx does
- Update to 3.0.1:
- Fix roles for types module
- Update Ruff to 0.9.1
- Update to 3.0.0:
- 🐛 Replace docutils private API use w/ public
- Drop support for nptyping
- Update to 2.5.0:
- Fix the type checker
- Apply typehints_formatter to signature
* Mon Oct 28 2024 daniel.garcia@suse.com
- Remove python-nptyping BuildRequirement for SLFO:Main
* Mon Sep 23 2024 dmueller@suse.com
- update to 2.4.4:
* Fix placement of return type when there is a doctest
* README and CI fixes
* Sun Sep 08 2024 dmueller@suse.com
- update to 2.4.0:
* Drop 3.9 support
* Add 3.13 support
- update to 2.3.0:
* Add module name rewrite configuration option
- update to 2.2.3:
* Fix mypy errors due to unneeded type ignores
* Fix rendering when docstring starst with a directive
* Sat Jun 29 2024 dmueller@suse.com
- update to 2.2.2:
* Fix for Issue #384: typehints_defaults = "braces-after" fails
for a multiline `:param:` entry
* Support autodoc_type_aliases configuration
* Support Sphinx 7.3 and drop 3.8 support
* Return injection fix
* Add option to force unions (and options) to be rendered with
bars
* Thu Feb 01 2024 dmueller@suse.com
- update to 1.25.3:
* dependency bumps
* Sun Jan 14 2024 dmueller@suse.com
- update to 1.25.2:
* Allow Sphinx explicitly to write in parallel.
* Fixed crash when documenting ParamSpecArgs
* Fixed a bug where if a class has an attribute and a constructor
argument with the same name, the constructor argument
type would be rendered incorrectly (issue 308)
* Fixed napoleon handling of numpy docstrings with no specified
return type.
* Fix a `Field list ends without a blank line` warning (issue 305).
* More robust determination of rtype location / fix issue 302
* Improvements to the location of the return type
* Use format_annotation to render class attribute type annotations
* Fix overloads support
* Fix spacing between `:rtype:` and directives
* Handle types from types module
* If module is \_io, use io instead
* Put rtype before examples or usage section
* Remove redundant return type for attributes
* Handle collections.abc.Callable as well as typing.Callable
* Put Literal args in code blocks
* Fix Optional role to be data.
* Fixed default options not displaying for parameters without
type hints.
* Use hatchling instead of setuptools
* Add support for typing.ParamSpec
* Allow star prefixes for parameter names in docstring
* Fri Jul 21 2023 kastl@b1-systems.de
- add sle15_python_module_pythons, remove skip_python2
* Fri Oct 07 2022 yarunachalam@suse.com
- Update to version 1.19.2
* Fix incorrect domain used for collections.abc.Callable.
* Support for CPython 3.11, no longer adds Optional when the argument is default
* Thu Jul 14 2022 code@bnavigator.de
- Update to 1.18.3
* Fix for new nptyping by @gaborbernat in #235
- Remove requirement on old extra package pathlib
* Mon Jun 06 2022 mcepl@suse.com
- Update to 1.18.2:
- [pre-commit.ci] pre-commit autoupdate
- Support and require nptyping 2.1.1
* Wed May 11 2022 mcepl@suse.com
- Switch to multibuild to break build cycles.
* Thu May 05 2022 mcepl@suse.com
- Upgrade to 1.18.1:
- Fix mocked module import not working when used as guarded
import
- Support and require nptyping>=2
- Handle UnionType
- Mark it as requiring nptyping<2
- Add typehints_use_rtype option
- Handles TypeError when getting source code via inspect
- Add support for type subscriptions with multiple elements,
where one or more elements are tuples; e.g.,
nptyping.NDArray[(Any, ...), nptyping.Float]
- Fix bug for arbitrary types accepting singleton
subscriptions; e.g., nptyping.Float[64]
- Resolve forward references
- Expand and better handle TypeVar
- Add intershpinx reference link for ... to Ellipsis (as is
just an alias)
- Prevents reaching inner blocks that contains if TYPE_CHECKING
- Log a warning instead of crashing when a type guard import
fails to resolve
- When resolving type guard imports if the target module does
not have source code (such is the case for C-extension
modules) do nothing instead of crashing
- Fix fully_qualified should be typehints_fully_qualified
- Resolve type guard imports before evaluating annotations for
objects
- Remove set_type_checking_flag flag as this is now done by
default
- Fix crash when the inspect module returns an invalid python
syntax source
- Made formatting function configurable using the option
typehints_formatter
- Fixed normalize_source_lines() messing with the indentation
of methods with decorators that have parameters starting with
def.
- Handle ValueError or TypeError being raised when signature of
an object cannot be determined
- Fix KeyError being thrown when argument is not documented
(e.g. cls argument for class methods, and self for methods)
- Added typehints_defaults config option allowing to
automatically annotate parameter defaults.
- Fixed NewType inserts a reference as first argument instead
of a string
- Dropped Python 3.6 support
- Python 3.10 support
- Normalize async functions properly
- Allow py310 style annotations (PEP-563)
* Mon Dec 27 2021 code@bnavigator.de
- Skip python310: Not ready yet. Factory needs only the primary
python3 flavor
* Tue Aug 03 2021 mcepl@suse.com
- Update to 1.12.0:
- Dropped Python 3.5 support
- Added the simplify_optional_unions config option
- Fixed indentation of multiline strings
- Changed formatting of None to point to the Python stdlib docs
- Updated special dataclass handling
* Sat Apr 24 2021 mcepl@suse.com
- Remove no-net-tests.patch as adding the fixed
python-sphinx-autodoc-typehints-system-object.inv.patch
makes tests requiring network working
(gh#agronholm/sphinx-autodoc-typehints#174).
* Fri Apr 23 2021 mcepl@suse.com
- Add no-net-tests.patch which marks tests requiring network
(gh#agronholm/sphinx-autodoc-typehints#174).
* Wed Sep 23 2020 dmueller@suse.com
- update to 1.11.0:
* Dropped support for Sphinx < 3.0
* Added support for alternative parameter names (``arg``, ``argument``, ``parameter``)
* Fixed import path for Signature (PR by Matthew Treinish)
* Fixed ``TypeError`` when formatting a parametrized ``typing.IO`` annotation
* Fixed data class displaying a return type in its ``__init__()`` method
- remove python-sphinx-autodoc-typehints-system-object.inv.patch (breaks the build)
* Fri Mar 06 2020 pgajdos@suse.com
- version update to 1.10.3
* Fixed ``TypeError`` (or wrong rendered class name) when an annotation is a generic class that has
a ``name`` property
* Fixed inner classes missing their parent class name(s) when rendered
* Fixed ``KeyError`` when encountering mocked annotations (``autodoc_mock_imports``)
* Rewrote the annotation formatting logic (fixes Python 3.5.2 compatibility regressions and an
``AttributeError`` regression introduced in v1.9.0)
* Fixed decorator classes not being processed as classes
* Added support for typing_extensions_
* Added the ``typehints_document_rtype`` option (PR by Simon-Martin Schröder)
* Fixed metaclasses as annotations causing ``TypeError``
* Fixed rendering of ``typing.Literal``
* Fixed OSError when generating docs for SQLAlchemy mapped classes
* Fixed unparametrized generic classes being rendered with their type parameters
(e.g. ``Dict[~KT, ~VT]``)
- added patches
fix use object.inv which comes with python-doc
+ python-sphinx-autodoc-typehints-system-object.inv.patch
* Mon Sep 16 2019 tchvatal@suse.com
- Update to 1.8.0:
* Fixed regression which caused TypeError or OSError when trying to set annotations due to PR #87
* Fixed unintentional mangling of annotation type names
* Added proper :py:data targets for NoReturn, ClassVar and Tuple
* Added support for inline type comments (like (int, str) -> None) (PR by Bernát Gábor)
* Use the native AST parser for type comment support on Python 3.8+
* Tue Sep 10 2019 tchvatal@suse.com
- Update to 1.7.0:
* Fixed unwrapped local functions causing errors (PR by Kimiyuki Onaka)
* Fixed AttributeError when documenting the __init__() method of a data class
* Added support for type hint comments (PR by Markus Unterwaditzer)
* Added flag for rendering classes with their fully qualified names (PR by Holly Becker)
- Remove merged patch sphinx21.patch
* Wed Jul 03 2019 tchvatal@suse.com
- Add patch to fix build with new sphinx:
* sphinx21.patch
* Thu Jun 06 2019 tchvatal@suse.com
- Drop not really needed devel dependency
* Sat Mar 23 2019 sebix+novell.com@sebix.at
- Remove patch setup-tests.patch, we are using pytest now.
* Wed Mar 20 2019 sebix+novell.com@sebix.at
- initial package for version 1.6.0
/usr/lib/python3.13/site-packages/sphinx_autodoc_typehints /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints-3.1.0.dist-info /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints-3.1.0.dist-info/INSTALLER /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints-3.1.0.dist-info/METADATA /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints-3.1.0.dist-info/RECORD /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints-3.1.0.dist-info/REQUESTED /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints-3.1.0.dist-info/WHEEL /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints-3.1.0.dist-info/licenses /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints-3.1.0.dist-info/licenses/LICENSE /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__init__.py /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__ /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/_parser.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/_parser.cpython-313.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/attributes_patch.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/attributes_patch.cpython-313.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/patches.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/patches.cpython-313.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/version.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/__pycache__/version.cpython-313.pyc /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/_parser.py /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/attributes_patch.py /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/patches.py /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/py.typed /usr/lib/python3.13/site-packages/sphinx_autodoc_typehints/version.py /usr/share/doc/packages/python313-sphinx-autodoc-typehints /usr/share/doc/packages/python313-sphinx-autodoc-typehints/README.md /usr/share/licenses/python313-sphinx-autodoc-typehints /usr/share/licenses/python313-sphinx-autodoc-typehints/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Oct 27 22:35:07 2025