We are pleased to announce the release of: taskflow 3.3.1: Taskflow structured state management library. This release is part of the stein release series. The source is available from: https://git.openstack.org/cgit/openstack/taskflow Download the package from: https://pypi.org/project/taskflow Please report issues through launchpad: https://bugs.launchpad.net/taskflow/ For more details, please see below. Changes in taskflow 3.2.0..3.3.1 -------------------------------- f9349f4 Update doc/conf.py to avoid warnings with sphinx 1.8 67b0da4 Remove the duplicated word eae5477 Fix a symbol error 76ce8c0 Create KazooClient with taskflow logger 10b3049 add lib-forward-testing-python3 test job cd6e496 add python 3.6 unit test job 7e2452e add proper pydot3 dependency 31fee47 import zuul job settings from project-config a11c88a Switch to use stestr for unit test 349f799 Add pydot test dependency 85f02d0 Remove PyPI downloads a456622 Update reno for stable/rocky 33685c8 Update various links in docs Diffstat (except docs and test files) ------------------------------------- .gitignore | 2 +- .stestr.conf | 3 +++ .testr.conf | 11 ----------- .zuul.yaml | 13 +++++++++++++ README.rst | 10 +++------- lower-constraints.txt | 3 ++- releasenotes/source/index.rst | 1 + releasenotes/source/rocky.rst | 6 ++++++ requirements.txt | 6 ++++++ taskflow/exceptions.py | 2 +- taskflow/jobs/backends/impl_redis.py | 6 +++--- taskflow/jobs/backends/impl_zookeeper.py | 4 ++-- taskflow/utils/kazoo_utils.py | 21 +++++++++++++-------- test-requirements.txt | 2 +- tox.ini | 16 ++++++++++------ 18 files changed, 75 insertions(+), 51 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index b83e8ae..53fc393 100644 --- a/requirements.txt +++ b/requirements.txt @@ -49,0 +50,6 @@ debtcollector>=1.2.0 # Apache-2.0 + +# For stestr +stestr>=2.0.0 # Apache-2.0 + +# For pydot output tests +pydot>=1.2.4 # MIT License diff --git a/test-requirements.txt b/test-requirements.txt index 2f6805a..b334d6b 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -32 +32 @@ testscenarios>=0.4 # Apache-2.0/BSD -testrepository>=0.0.18 # Apache-2.0/BSD +stestr>=2.0.0 # Apache-2.0