- Fixed ReadTheDocs build
build.os
is now a required parameterpython.version
is replaced bybuild.tools
- New features in
pyee.asyncio.AsyncIOEventEmitter
:wait_for_complete
method to wait for all running handlers to complete executioncancel
method to cancel execution of all running handlerscomplete
property that'sTrue
when no handlers are currently running
- Updated changelog for v12 release to describe where to find alternatives to deprecated and removed imports
- Add support for Python 3.13
- Upgrade GitHub Actions
- Upgrade
actions/setup-python
to v5 - Upgrade
actions/setup-node
to v4 - Upgrade
actions/upload-artifact
to v4 - Updated
CONTRIBUTORS.md
to include missing contributors
- Remove deprecated imports:
pyee.BaseEventEmitter
- Use
pyee.base.EventEmitter
orpyee.EventEmitter
instead
- Use
pyee.AsyncIOEventEmitter
- Use
pyee.asyncio.AsyncIOEventEmitter
instead
- Use
pyee.TwistedEventEmitter
- Use
pyee.twisted.TwistedEventEmitter
instead
- Use
pyee.ExecutorEventEmitter
- Use
pyee.executor.ExecutorEventEmitter
instead
- Use
pyee.TrioEventEmitter
- Use
pyee.trio.TrioEventEmitter
instead
- Use
- Add
PyeeError
which inherits fromPyeeException
, and use throughout - Deprecate direct use of
PyeeException
- Use
PyeeError
instead
- Use
- Add project URLs to pyproject.toml and PyPI
- Use ActionLint v2
- Fix GitHub release action
- Generate a man page with Sphinx (in addition to mkdocs HTML)
- Use GitHub Actions to cut releases
- Bump development dependencies, thanks to dependabot
- Support Python 3.12
- Use node.js LTS in GitHub Actions
- Read support Python versions from
pyproject.toml
in GitHub Actions
- Require Python >= 3.8
- Remove mention of Python 3.5 from documentation
- Update classifiers in
pyproject.toml
- Add just task to tag releases in git
- Update RTD badge in README.md
- Copy fixes to changelog
- Remove package.json/package-lock.json
- Use Python 3.8 on Read the Docs
- Various bugfixes for
.readthedocs.yml
Development Environment Updates:
- Switch from
make
tojust
- Switch from vanilla
pip
topip-tools
environment.yml
updatedenvironment.yml
not currently supported
Packaging Updates:
- Switch from
setup.py
topyproject.toml
(still using setuptools)
Documentation updates:
- Switch documentation generator from Sphinx to mkdocs (including on ReadTheDocs)
- Use Python 3.10 on ReadTheDocs
- Change documentation them to
readthedocs
(old theme not available in mkdocs) - Switch documentation format from RST to markdown (Including in docstrings)
Testing and Linting Updates:
- use
npx
to run pyright pyproject.toml
linting withvalidate-pyproject
API Updates:
- Minor type annotation bugfixes
- Store AsyncIO Futures in a set
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
- Add
py.typed
file toMANIFEST.in
(ensures mypy actually respects the type annotations)
- Improve type safety of
EventEmitter#on
,EventEmitter#add_listener
andEventEmitter#listens_to
by parameterizing theHandler
- Minor fixes to documentation
- Add
tests_require
to setup.py, fixing COPR build - Install as an editable package in
environment.yml
andrequirements_docs.txt
, fixing Conda workflows and ReadTheDocs respectively
- Fix regression where
EventEmitter#listeners
began crashing when called with uninitialized listeners
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)
Moved/deprecated interfaces:
pyee.TwistedEventEmitter
->pyee.twisted.TwistedEventEmitter
pyee.AsyncIOEventEmitter
->pyee.asyncio.AsyncIOEventEmitter
pyee.ExecutorEventEmitter
->pyee.executor.ExecutorEventEmitter
pyee.TrioEventEmitter
->pyee.trio.TrioEventEmitter
Removed interfaces:
pyee.CompatEventEmitter
Documentation fixes:
- Add docstring to
BaseEventEmitter
- Update docstrings to reference
EventEmitter
instead ofBaseEventEmitter
throughout
Developer Setup & CI:
- Migrated builds from Travis to GitHub Actions
- Refactor developer setup to use a local virtualenv
- Correct version in docs
- Add .readthedocs.yaml file
- Remove vcversioner dependency from docs build
- Remove test_requires and setup_requires directives from setup.py (closing #82)
- Remove vcversioner from dependencies
- Streamline requirements.txt and environment.yml files
- Update and extend CONTRIBUTING.rst
- CI with GitHub Actions instead of Travis (closing #56)
- Format all code with black
- Switch default branch to
main
- Add the CHANGELOG to Sphinx docs (closing #51)
- Updated copyright information
- Improve thread safety in base EventEmitter
- Documentation fix in ExecutorEventEmitter
- Update README to reflect new API
- Drop support for Python 2.7
- Remove CompatEventEmitter and rename BaseEventEmitter to EventEmitter
- Create an alias for BaseEventEmitter with a deprecation warning
- setup_requires vs tests_require now correct
- tests_require updated to pass in tox
- 3.7 testing removed from tox
- 2.7 testing removed from Travis
- Tag license as MIT in setup.py
- Update requirements and environment to pip -e the package
- Support Python 3.8 by attempting to import TimeoutError from
asyncio.exceptions
- Add LICENSE to package manifest
- Add trio testing to tox
- Add Python 3.8 to tox
- Fix Python 2.7 in tox
- Some tweaks to the docs
- Added a
TrioEventEmitter
class for intended use with trio AsyncIOEventEmitter
now correctly handles cancellations- Add a new experimental
pyee.uplift
API for adding new functionality to existing event emitters
- Added a
BaseEventEmitter
class which is entirely synchronous and intended for simple use and for subclassing - Added an
AsyncIOEventEmitter
class for intended use with asyncio - Added a
TwistedEventEmitter
class for intended use with twisted - Added an
ExecutorEventEmitter
class which runs events in an executor - Deprecated
EventEmitter
(use one of the new classes)
- CHANGELOG.md reformatted to CHANGELOG.rst
- Added CONTRIBUTORS.rst
- The
listeners
method no longer returns the raw list of listeners, and instead returns a list of unwrapped listeners; This means that mutating listeners on the EventEmitter by mutating the list returned by this method isn't possible anymore, and that for once handlers this method returns the unwrapped handler rather than the wrapped handler once
API now returns the unwrapped handler in both decorator and non-decorator cases- Possible to remove once handlers with unwrapped handlers
- Internally, listeners are now stored on a OrderedDict rather than a list
- Minor stylistic tweaks to make code more pythonic
- Fix bug in setup.py; Now publishable
- Coroutines now work with .once
- Wrapped listener is removed prior to hook execution rather than after for synchronous .once handlers
- Add universal wheel
- EventEmitter now inherits from object
- Fixes/Updates to pyee docs
- Uses vcversioner for managing version information
- Errors resulting from async functions are now proxied to the "error" event, rather than being lost into the aether.
- Fix setup.py broken in python 2.7
- Add link to CHANGELOG in README
- Fix RST render warnings in README
- Add README contents as long_description inside setup.py
- Drop support for pythons 3.2, 3.3 and 3.4 (support 2.7 and 3.5)
- Use pytest instead of nose
- Removed Event_emitter alias
- Code passes flake8
- Use setuptools (no support for users without setuptools)
- Reogranized docs, hosted on readthedocs.org
- Support for scheduling coroutine functions passed to
@ee.on
- Make copy of event handlers array before iterating on emit
- Change URLs to reference jfhbrook
- Decorators return original function for
on
andonce
- Explicit python 3 support
- Addition of legit license file
- Addition of CHANGELOG.md
- Now properly using semver