- `EventEmitter` supports pickling - Development dependencies updated to latest - Dependency on mock removed in favor of unittest.mock - Additional type hints so pyright check passes on latest - Drop 3.7 support
9.0.4
- Add `py.typed` file to `MANIFEST.in` (ensures mypy actually respects the type annotations)
9.0.3
- Improve type safety of `EventEmitteron`, `EventEmitteradd_listener` and `EventEmitterlistens_to` by parameterizing the `Handler` - Minor fixes to documentation
9.0.2
- Add `tests_require` to setup.py, fixing COPR build - Install as an editable package in `environment.yml` and `requirements_docs.txt`, fixing Conda workflows and ReadTheDocs respectively
9.0.1
- Fix regression where `EventEmitterlisteners` began crashing when called with uninitialized listeners
9.0.0
Compatibility:
- Drop 3.6 support
New features:
- New `EventEmitter.event_names()` method (see PR 96) - Type annotations and type checking with `pyright` - Exprimental `pyee.cls` module exposing an `evented` class decorator and a `on` method decorator (see PR 84)