summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Thiemonge <gthiemon@redhat.com>2022-01-20 16:55:59 +0100
committerGregory Thiemonge <gthiemon@redhat.com>2022-01-25 18:50:36 +0100
commit49fa9acbb371a6fc244ec030111ba573280eabfa (patch)
treecd57858890c509c39071f5fb6aa514fabf0823b0
parent185e6c4a39f622bc46ba4b2d972bd8c7ed975888 (diff)
downloadtaskflow-49fa9acbb371a6fc244ec030111ba573280eabfa.tar.gz
Fix unit tests
Use fasteners 0.17.3, it fixes a deadlock issue. Also fixed a new error when building the doc. Depends-On: https://review.opendev.org/c/openstack/requirements/+/826318 Change-Id: I667725886ea424cf62c5b7a07a2e58ecb3399e0c
-rw-r--r--requirements.txt2
-rw-r--r--taskflow/types/failure.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/requirements.txt b/requirements.txt
index 65979f1..f1cdc80 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -14,7 +14,7 @@ six>=1.10.0 # MIT
futurist>=1.2.0 # Apache-2.0
# For reader/writer + interprocess locks.
-fasteners>=0.7.0 # Apache-2.0
+fasteners>=0.17.3 # Apache-2.0
# Very nice graph library
networkx>=2.1.0 # BSD
diff --git a/taskflow/types/failure.py b/taskflow/types/failure.py
index 31c30ce..fc35bc9 100644
--- a/taskflow/types/failure.py
+++ b/taskflow/types/failure.py
@@ -120,7 +120,7 @@ class Failure(mixins.StrMixin):
to have code ran when this happens, and this can cause issues and
side-effects that the receiver would not have intended to have caused).
- TODO(harlowja): use parts of http://bugs.python.org/issue17911 and the
+ TODO(harlowja): use parts of :pybug:`17911` and the
backport at https://pypi.org/project/traceback2/ to (hopefully)
simplify the methods and contents of this object...
"""