summaryrefslogtreecommitdiff
path: root/pyproject.toml
Commit message (Collapse)AuthorAgeFilesLines
* lazy annotationsDavid Lord2023-04-121-1/+0
|
* Require typing-extensions > 4.2pgjones2023-04-091-1/+1
| | | | | As this is the first version that includes ParamSpec, which is the required usage of typing-extensions.
* Include package data in the distributionpgjones2023-04-091-1/+0
| | | | | This will ensure the py.typed file is included, and hence the type hints can be used by other projects.
* Add an initial set of type hintspgjones2023-04-021-0/+22
| | | | | | | These focus on the public API with the private aspect omitted. This is because these are hard to type, and may not be required with modern python. However, this should still be useful if adopted for code that uses blinker.
* Add a send_async method to the Signalpgjones2023-01-241-0/+1
| | | | | | | | | | This allows for signals to send to coroutine receivers by awaiting them. The _async_wrapper and _sync_wrapper allows for conversion of sync and async receivers as required if defined. If not defined a runtime error is raised. The wrappers are used to avoid any direct tie into asyncio, trio, greenbacks, asgiref, or other specific async implementation.
* Move to pyproject.tomlBartek Sokorski2023-01-221-0/+48