summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-astroid_2.5.1.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-03-04 15:05:52 +0200
committerKhem Raj <raj.khem@gmail.com>2021-03-08 07:29:38 -0800
commitcbb5b9229404c738ce0d3bdecd37d16a10d6ea1a (patch)
treec12b4f60b93f33e36a6232255c0a7adae665bf61 /meta-python/recipes-devtools/python/python3-astroid_2.5.1.bb
parent7163c83e82bb6975b1868f0d45ea858ef3805023 (diff)
downloadmeta-openembedded-cbb5b9229404c738ce0d3bdecd37d16a10d6ea1a.tar.gz
python3-astroid: Upgrade 2.5 -> 2.5.1
Upgrade to release 2.5.1: - The ``context.path`` is reverted to a set because otherwise it leads to false positives for non `numpy` functions. - Don't transform dataclass ClassVars - Improve typing.TypedDict inference - Fix the `Duplicates found in MROs` false positive. 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.5.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-astroid_2.5.1.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.5.1.bb b/meta-python/recipes-devtools/python/python3-astroid_2.5.1.bb
new file mode 100644
index 0000000000..84315767d3
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.5.1.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] = "cfc35498ee64017be059ceffab0a25bedf7548ab76f2bea691c5565896e7128d"
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"