summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-03-29 12:20:18 +0300
committerKhem Raj <raj.khem@gmail.com>2021-03-30 09:04:34 -0700
commitbacc4b10bc9d5614926568d975a4786c5fe34dfb (patch)
treed6b07592cda8ccb0f67cedfd48580ca1f9fdad7e /meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb
parenta0405c08c65537e96f05ea955c5028400d89b2ed (diff)
downloadmeta-openembedded-bacc4b10bc9d5614926568d975a4786c5fe34dfb.tar.gz
python3-astroid: Upgrade 2.5.1 -> 2.5.2
Upgrade to release 2.5.2: - Detects `import numpy` as a valid `numpy` import. - Iterate over ``Keywords`` when using ``ClassDef.get_children`` Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb b/meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb
new file mode 100644
index 0000000000..93027754b6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb
@@ -0,0 +1,32 @@
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[sha256sum] = "6b0ed1af831570e500e2437625979eaa3b36011f66ddfc4ce930128610258ca9"
8
9inherit pypi setuptools3
10
11DEPENDS += "${PYTHON_PN}-pytest-runner-native"
12
13PACKAGES =+ "${PN}-tests"
14
15FILES_${PN}-tests += " \
16 ${PYTHON_SITEPACKAGES_DIR}/astroid/test* \
17 ${PYTHON_SITEPACKAGES_DIR}/astroid/__pycache__/test* \
18"
19
20RDEPENDS_${PN}_class-target += "\
21 ${PYTHON_PN}-distutils \
22 ${PYTHON_PN}-lazy-object-proxy \
23 ${PYTHON_PN}-logging \
24 ${PYTHON_PN}-six \
25 ${PYTHON_PN}-wrapt \
26 ${PYTHON_PN}-setuptools \
27"
28
29RDEPENDS_${PN}-tests_class-target += "\
30 ${PYTHON_PN}-unittest \
31 ${PYTHON_PN}-xml \
32"