summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-astroid_2.13.2.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2023-01-12 16:55:57 +0200
committerKhem Raj <raj.khem@gmail.com>2023-01-12 09:02:10 -0800
commit4558ddaaf73c45d6dbe5a68373219cfa2f6c6082 (patch)
tree7e6df7ae0554cb22f25f439f0b3354565b0594e9 /meta-python/recipes-devtools/python/python3-astroid_2.13.2.bb
parentbabfc021766d32578c5ed136897d22cef5abdd24 (diff)
downloadmeta-openembedded-4558ddaaf73c45d6dbe5a68373219cfa2f6c6082.tar.gz
python3-astroid: Upgrade 2.12.13 -> 2.13.2
Upgrade to release 2.13.2: - Removed version conditions on typing_extensions dependency. - Removed typing_extensions from our tests requirements as it was preventing issues to appear in our continuous integration. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-astroid_2.13.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-astroid_2.13.2.bb39
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.13.2.bb b/meta-python/recipes-devtools/python/python3-astroid_2.13.2.bb
new file mode 100644
index 0000000000..fa22080d36
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.13.2.bb
@@ -0,0 +1,39 @@
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] = "3bc7834720e1a24ca797fd785d77efb14f7a28ee8e635ef040b6e2d80ccb3303"
8
9SRC_URI += " \
10 file://0001-pyproject.toml-Replace-with.patch \
11"
12
13inherit pypi python_setuptools_build_meta
14
15DEPENDS += "\
16 ${PYTHON_PN}-pytest-runner-native \
17 ${PYTHON_PN}-wheel-native \
18"
19
20PACKAGES =+ "${PN}-tests"
21
22FILES:${PN}-tests += " \
23 ${PYTHON_SITEPACKAGES_DIR}/astroid/test* \
24 ${PYTHON_SITEPACKAGES_DIR}/astroid/__pycache__/test* \
25"
26
27RDEPENDS:${PN}:class-target += "\
28 ${PYTHON_PN}-distutils \
29 ${PYTHON_PN}-lazy-object-proxy \
30 ${PYTHON_PN}-logging \
31 ${PYTHON_PN}-six \
32 ${PYTHON_PN}-wrapt \
33 ${PYTHON_PN}-setuptools \
34"
35
36RDEPENDS:${PN}-tests:class-target += "\
37 ${PYTHON_PN}-unittest \
38 ${PYTHON_PN}-xml \
39"