v2.0.3 (2020-11-27)
Bugfix release.
-
Mark eventlet and gevent support as deprecated. The support will be removed in Pykka 3.0.
These were somewhat interesting ways to implement concurrency in Python when Pykka was conceived in 2011. Today, it is unclear it these libraries still have any mindshare or if keeping the support for them just adds an unnecessary burden to Pykka's maintenance.
-
Include Python 3.9 in the test matrix. (PR: #98)
-
Add missing
None
default value for thetimeout
keyword argument topykka.eventlet.EventletEvent.wait()
, so that it matches thethreading.Event
API. (PR: #91)