summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2020-06-25 12:07:19 +0300
committerKhem Raj <raj.khem@gmail.com>2020-06-26 08:56:37 -0700
commit629696b64b93fb94069a440459222f1dd2be56e8 (patch)
treed9b3fb3f3cafd40d62ebbb52de3466c1e2dafd79 /meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb
parent0d539978ad6934f82a4ab064ea680f1b862726b0 (diff)
downloadmeta-openembedded-629696b64b93fb94069a440459222f1dd2be56e8.tar.gz
python3-astroid: Upgrade 2.3.3 -> 2.4.2
Upgrade to release 2.4.2: - `FunctionDef.is_generator` properly handles `yield` nodes in `While` tests - Properly construct the arguments of infered property descriptors - Handle the case where the raw builder fails to retrieve the ``__all__`` attribute - Restructure the AST parsing heuristic to always pick the same module - Do not crash with SyntaxError when parsing namedtuples with invalid label - Expose a ast_from_string method in AstroidManager, which will accept source code as a string and return the corresponding astroid object - Prevent a recursion error to happen when inferring the declared metaclass of a class Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb b/meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb
deleted file mode 100644
index dc1ce0eb4c..0000000000
--- a/meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb
+++ /dev/null
@@ -1,33 +0,0 @@
1SUMMARY = "An abstract syntax tree for Python with inference support."
2HOMEPAGE = "https://pypi.python.org/pypi/astroid"
3SECTION = "devel/python"
4LICENSE = "LGPL-2.1"
5LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
6
7SRC_URI[md5sum] = "5f3d73d82d1753b59bb49a6bc6046dee"
8SRC_URI[sha256sum] = "71ea07f44df9568a75d0f354c49143a4575d90645e9fead6dfb52c26a85ed13a"
9
10inherit pypi setuptools3
11
12DEPENDS += "${PYTHON_PN}-pytest-runner-native"
13
14PACKAGES =+ "${PN}-tests"
15
16FILES_${PN}-tests += " \
17 ${PYTHON_SITEPACKAGES_DIR}/astroid/test* \
18 ${PYTHON_SITEPACKAGES_DIR}/astroid/__pycache__/test* \
19"
20
21RDEPENDS_${PN}_class-target += "\
22 ${PYTHON_PN}-distutils \
23 ${PYTHON_PN}-lazy-object-proxy \
24 ${PYTHON_PN}-logging \
25 ${PYTHON_PN}-six \
26 ${PYTHON_PN}-wrapt \
27 ${PYTHON_PN}-setuptools \
28"
29
30RDEPENDS_${PN}-tests_class-target += "\
31 ${PYTHON_PN}-unittest \
32 ${PYTHON_PN}-xml \
33"