Skip to content

Commit

Permalink
Export pluggy's typing
Browse files Browse the repository at this point in the history
Fix #428.
  • Loading branch information
bluetech committed Aug 26, 2023
1 parent 973fb56 commit 62da97c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
18 changes: 18 additions & 0 deletions changelog/428.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pluggy now exposes its typings to static type checkers.

As part of this, the following changes are made:

- Renamed ``_Result`` to ``Result``, and exported as :class:`pluggy.Result`.
- Renamed ``_HookRelay`` to ``HookRelay``, and exported as :class:`pluggy.HookRelay`.
- Renamed ``_HookCaller`` to ``HookCaller``, and exported as :class:`pluggy.HookCaller`.
- Exported ``HookImpl`` as :class:`pluggy.HookImpl`.
- Renamed ``_HookImplOpts`` to ``HookimplOpts``, and exported as :class:`pluggy.HookimplOpts`.
- Renamed ``_HookSpecOpts`` to ``HookspecOpts``, and exported as :class:`pluggy.HookspecOpts`.
- Some fields and classes are marked ``Final`` and ``@final``.
- The :ref:`api-reference` is updated to clearly delineate pluggy's public API.

Compatibility aliases are put in place for the renamed types.
We do not plan to remove the aliases, but we strongly recommend to only import from ``pluggy.*`` to ensure future compatibility.

Please note that pluggy is currently unable to provide strong typing for hook calls, e.g. ``pm.hook.my_hook(...)``,
nor to statically check that a hook implementation matches the hook specification's type.
2 changes: 2 additions & 0 deletions docs/api_reference.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
:orphan:

.. _`api-reference`:

API Reference
=============

Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ dev =
testing =
pytest
pytest-benchmark
[options.package_data]
pluggy = py.typed

[devpi:upload]
formats=sdist.tgz,bdist_wheel
Empty file added src/pluggy/py.typed
Empty file.

0 comments on commit 62da97c

Please sign in to comment.