From bf1fe2a95203ef7d2d8a513ca0c085d04dbd5af3 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 10 Sep 2024 17:02:46 +0800 Subject: python3-executing: upgrade 2.0.1 -> 2.1.0 Changelog: ========== - add 3.13 to setup.cfg classifiers - test: optimized test preformance by moving deadcode check to the end (#89) - Catch exception if node is in unexpected statement (#84) - Merge pull request #80 from alexmojaki/3.13 - doc: review changes - fix: removed unused verification - fix: handle __firstlineno__ - refactor: review changes - test: skip module tests for now - test(3.13): added sample_results - fix: skip files with raise an recursion error in 3.13, because the recursion limit has no effect - fix: allow to LOAD_FAST variables for TypeVars - test: fixed tests for 3.13.0b1 - test(3.13): handle optimization of not not x - fix(3.13): a type variable can also have nonlocal variables - fix(3.13): COMPARE_OP maps always to ast.Compare - fix(3.13): a async function can also have nonlocal variables - fix(3.13): a lambda can also have nonlocal variables - fix(3.13): handle CALL_KW like method calls which are only located by the end position - fix(3.13): loading of __class__ is mapped to the last element of the class - fix(3.13): handle STORE_FAST_STORE_FAST and similar instructions as known issues - fix(3.13): fixed typing errors - build(3.13): added 3.13 to ci workflow - fix(3.13): added new rules to the verification - fix(3.13): show_caches is deprecated - fix: backward compatibility fix for changed source positions in 3.12.5 (#82) (#83) - Add many_calls tests to EXECUTING_SLOW_TESTS (#78) Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-executing_2.0.1.bb | 9 --------- meta-python/recipes-devtools/python/python3-executing_2.1.0.bb | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-executing_2.0.1.bb create mode 100644 meta-python/recipes-devtools/python/python3-executing_2.1.0.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-executing_2.0.1.bb b/meta-python/recipes-devtools/python/python3-executing_2.0.1.bb deleted file mode 100644 index 3ee1e66f97..0000000000 --- a/meta-python/recipes-devtools/python/python3-executing_2.0.1.bb +++ /dev/null @@ -1,9 +0,0 @@ -SUMMARY = "Get the currently executing AST node of a frame, and other information" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a3d6c15f7859ae235a78f2758e5a48cf" - -DEPENDS = "python3-setuptools-scm-native" - -inherit pypi python_setuptools_build_meta - -SRC_URI[sha256sum] = "35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147" diff --git a/meta-python/recipes-devtools/python/python3-executing_2.1.0.bb b/meta-python/recipes-devtools/python/python3-executing_2.1.0.bb new file mode 100644 index 0000000000..4df84e638a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-executing_2.1.0.bb @@ -0,0 +1,9 @@ +SUMMARY = "Get the currently executing AST node of a frame, and other information" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a3d6c15f7859ae235a78f2758e5a48cf" + +DEPENDS = "python3-setuptools-scm-native" + +inherit pypi python_setuptools_build_meta + +SRC_URI[sha256sum] = "8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab" -- cgit v1.2.3-54-g00ecf