From cebf01f326de251a94f6944b6d06019d673893ae Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 10 Sep 2021 05:57:14 +0800 Subject: [PATCH] python3-transitions: upgrade 0.8.8 -> 0.8.9 Release 0.8.8 is a minor release and contains a bugfix for HSM, a feature for `GraphSupport` and changes internal cache handling: - Bugfix #544: `NestedEvent` now wraps the machine's scope into partials passed to `HierarchicalMachine._process`. This prevents queued transitions from losing their scope. - Feature #533: `(A)Graph.draw` function (object returned by `GraphMachine.get_graph()`) can be passed a file/stream object as first parameter or `None`. The later will result in `draw` returning a binary string. (thanks @Blindfreddy). - Feature #532: Use id(model) instead of model for machine-bound caches in `LockedMachine`, `AsyncMachine` and `GraphMachine`. This might influence pickling (thanks @thedrow). Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...hon3-transitions_0.8.8.bb => python3-transitions_0.8.9.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-transitions_0.8.8.bb => python3-transitions_0.8.9.bb} (61%) diff --git a/meta-python/recipes-devtools/python/python3-transitions_0.8.8.bb b/meta-python/recipes-devtools/python/python3-transitions_0.8.9.bb similarity index 61% rename from meta-python/recipes-devtools/python/python3-transitions_0.8.8.bb rename to meta-python/recipes-devtools/python/python3-transitions_0.8.9.bb index ddb66ff7f6..178dfad3f3 100644 --- a/meta-python/recipes-devtools/python/python3-transitions_0.8.8.bb +++ b/meta-python/recipes-devtools/python/python3-transitions_0.8.9.bb @@ -4,6 +4,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=baac7be1f4c17620df74188e23da6d47" inherit pypi setuptools3 -SRC_URI[sha256sum] = "e7a86b31a161a76133f189b3ae9dad2755a80ea4c1e0eee1805648d021fb677d" +SRC_URI[sha256sum] = "fc2ec6d6b6f986cd7e28e119eeb9ba1c9cc51ab4fbbdb7f2dedad01983fd2de0" -RDEPENDS:${PN} += "python3-six" +RDEPENDS:${PN} += "python3-six python3-logging"