We high-spiritedly announce the release of: taskflow 2.9.0: Taskflow structured state management library. This release is part of the ocata release series. The source is available from: http://git.openstack.org/cgit/openstack/taskflow Download the package from: https://pypi.python.org/pypi/taskflow Please report issues through launchpad: http://bugs.launchpad.net/taskflow/ For more details, please see below. Changes in taskflow 2.8.0..2.9.0 -------------------------------- b3b659f Remove dep on monotonic 774d598 Rename engine analyzer to be named selector dc15edc Update author and author-email f7505ef Updated from global requirements 0089971 Updated from global requirements 09ded16 Add Constraints support e0dcbdb Show team and repo badges on README Diffstat (except docs and test files) ------------------------------------- README.rst | 9 + requirements.txt | 3 - setup.cfg | 8 +- taskflow/engines/action_engine/analyzer.py | 268 ---------------------------- taskflow/engines/action_engine/builder.py | 6 +- taskflow/engines/action_engine/completer.py | 10 +- taskflow/engines/action_engine/engine.py | 6 +- taskflow/engines/action_engine/runtime.py | 50 +++++- taskflow/engines/action_engine/selector.py | 228 +++++++++++++++++++++++ tools/tox_install.sh | 30 ++++ tox.ini | 7 +- 12 files changed, 335 insertions(+), 296 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 3c830b3..aeee87e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -34,3 +33,0 @@ futures>=3.0;python_version=='2.7' or python_version=='2.6' # BSD -# Backport for time.monotonic which is in 3.3+ -monotonic>=0.6 # Apache-2.0 -