summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-astroid_2.6.0.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-06-24 18:03:46 +0300
committerKhem Raj <raj.khem@gmail.com>2021-06-28 09:02:47 -0700
commit280127dc21c72eb9d5732ac112d2d56ab2ef9e97 (patch)
tree40afcb35ca3adec101c62d94bf282622f6c13ffb /meta-python/recipes-devtools/python/python3-astroid_2.6.0.bb
parent3b201ab1bfdc218bad737e491217f4fe15d767f7 (diff)
downloadmeta-openembedded-280127dc21c72eb9d5732ac112d2d56ab2ef9e97.tar.gz
python3-astroid: Upgrade 2.5.8 -> 2.6.0
Upgrade to release 2.6.0: - Appveyor and travis are no longer used in the continuous integration - `setuptools_scm`` has been removed and replaced by ``tbump`` in order to not have hidden runtime dependencies to setuptools - ``NodeNg``, the base node class, is now accessible from ``astroid`` or ``astroid.nodes`` as it can be used for typing - pdate enum brain to improve inference of .name and .value dynamic class attributes - Removed ``Repr``, ``Exec``, and ``Print`` nodes as the ``ast`` nodes they represented have been removed with the change to Python 3 - Deprecate ``Ellipsis`` node. It will be removed with the next minor release - Deprecated ``Index`` and ``ExtSlice`` nodes - Updated all Match nodes to be internally consistent - Add ``Pattern`` base class 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.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-astroid_2.6.0.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.6.0.bb b/meta-python/recipes-devtools/python/python3-astroid_2.6.0.bb
new file mode 100644
index 0000000000..e6c485bccf
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.6.0.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] = "09bdb456e02564731f8b5957cdd0c98a7f01d2db5e90eb1d794c353c28bfd705"
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"