summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-astroid_2.6.2.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-07-06 17:48:59 +0300
committerKhem Raj <raj.khem@gmail.com>2021-07-08 09:17:50 -0700
commit3620ab9a67fef87e605ccce229145413517c6aaf (patch)
tree130c02d3510b8ae6f159c8edd2e714df3df8e469 /meta-python/recipes-devtools/python/python3-astroid_2.6.2.bb
parent39aefd4eb7396d4125ca675f7ea02d576b5a9863 (diff)
downloadmeta-openembedded-3620ab9a67fef87e605ccce229145413517c6aaf.tar.gz
python3-astroid: Upgrade 2.6.0 -> 2.6.2
Upgrade to release 2.6.2: - Fix a crash when the inference of the length of a node failed - Fix unhandled StopIteration during inference, following the implementation of PEP479 in python 3.7+ 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.6.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-astroid_2.6.2.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.6.2.bb b/meta-python/recipes-devtools/python/python3-astroid_2.6.2.bb
new file mode 100644
index 0000000000..88a7c49499
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.6.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://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1"
6
7SRC_URI[sha256sum] = "38b95085e9d92e2ca06cf8b35c12a74fa81da395a6f9e65803742e6509c05892"
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"