summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb
diff options
context:
space:
mode:
authorzhengruoqin <zhengrq.fnst@fujitsu.com>2021-04-12 21:51:07 +0800
committerKhem Raj <raj.khem@gmail.com>2021-04-13 08:06:07 -0700
commitb06d10f7dec7c1194b86e80ae84c71dd9df9c6f8 (patch)
tree94fa5cddffb260b46f997b7a34e461d92e53bf24 /meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb
parent44277ef50aba4858ec77b6ce329d2230ad2d503a (diff)
downloadmeta-openembedded-b06d10f7dec7c1194b86e80ae84c71dd9df9c6f8.tar.gz
python3-astroid: upgrade 2.5.2 -> 2.5.3
What's New in astroid 2.5.3? ============================ Release Date: 2021-04-10 * Takes into account the fact that subscript inferring for a ClassDef may involve __class_getitem__ method * Reworks the `collections` and `typing` brain so that `pylint`s acceptance tests are fine. Closes PyCQA/pylint#4206 * Use ``inference_tip`` for ``typing.TypedDict`` brain. * Fix mro for classes that inherit from typing.Generic * Add inference tip for typing.Generic and typing.Annotated with ``__class_getitem__`` Closes PyCQA/pylint#2822 Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.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, 0 insertions, 32 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
deleted file mode 100644
index 93027754b6..0000000000
--- a/meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb
+++ /dev/null
@@ -1,32 +0,0 @@
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"