Pykka is a Python implementation of the `actor model
<http://en.wikipedia.org/wiki/Actor_model>`_. The actor model introduces some
rules to control the sharing of state and cooperation between execution
units, with which one can build concurrent applications.
Provides
Requires
License
Apache-2.0
Changelog
* Tue Jan 27 2026 Dirk Müller <dmueller@suse.com>
- update to 4.4.1:
* fix: Simplify the actor thread's name
* Tue Nov 25 2025 Marius Grossu <marius.grossu@suse.com>
- Update to 4.4.0:
* Remove pykka.__version__. Use importlib.metadata.version("pykka")
* Port docs from Sphinx to Mkdocs and generally refresh docs
- Update to 4.3.0:
* Remove support for Python 3.9 as it reaches end-of-life next month
* Only allow one of Future's set(), set_exception(), and set_get_hook() methods to be called