summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-astroid_2.15.6.bb
diff options
context:
space:
mode:
authorTrevor Gamblin <tgamblin@baylibre.com>2023-07-17 11:20:28 -0400
committerKhem Raj <raj.khem@gmail.com>2023-07-17 10:38:28 -0700
commita2e5746629a1cff42391007895536d82310dae8c (patch)
treefda35f1ded0747766cf8530ec7e77050d80fa86f /meta-python/recipes-devtools/python/python3-astroid_2.15.6.bb
parent0093dadf6f480ec3d14922f2288837a53e02d2a7 (diff)
downloadmeta-openembedded-a2e5746629a1cff42391007895536d82310dae8c.tar.gz
python3-astroid: upgrade 2.15.5 -> 2.15.6
Changelog: https://github.com/pylint-dev/astroid/releases/tag/v2.15.6 Changes: - Harden get_module_part() against ".". - Avoid expensive list/tuple multiplication operations that would result in MemoryError. Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-astroid_2.15.6.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-astroid_2.15.6.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.15.6.bb b/meta-python/recipes-devtools/python/python3-astroid_2.15.6.bb
new file mode 100644
index 0000000000..7325eb13f3
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.15.6.bb
@@ -0,0 +1,35 @@
1SUMMARY = "An abstract syntax tree for Python with inference support."
2HOMEPAGE = "https://pypi.python.org/pypi/astroid"
3SECTION = "devel/python"
4LICENSE = "LGPL-2.1-only"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1"
6
7SRC_URI[sha256sum] = "903f024859b7c7687d7a7f3a3f73b17301f8e42dfd9cc9df9d4418172d3e2dbd"
8
9inherit pypi python_setuptools_build_meta
10
11DEPENDS += "\
12 ${PYTHON_PN}-pytest-runner-native \
13 ${PYTHON_PN}-wheel-native \
14"
15
16PACKAGES =+ "${PN}-tests"
17
18FILES:${PN}-tests += " \
19 ${PYTHON_SITEPACKAGES_DIR}/astroid/test* \
20 ${PYTHON_SITEPACKAGES_DIR}/astroid/__pycache__/test* \
21"
22
23RDEPENDS:${PN}:class-target += "\
24 ${PYTHON_PN}-distutils \
25 ${PYTHON_PN}-lazy-object-proxy \
26 ${PYTHON_PN}-logging \
27 ${PYTHON_PN}-six \
28 ${PYTHON_PN}-wrapt \
29 ${PYTHON_PN}-setuptools \
30"
31
32RDEPENDS:${PN}-tests:class-target += "\
33 ${PYTHON_PN}-unittest \
34 ${PYTHON_PN}-xml \
35"