summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/python3-manifest.json
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2021-06-13 18:18:06 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-06-17 00:07:05 +0100
commitf071b059a049787563c612fa532ba84cd000cd21 (patch)
treed184b00dda954d8493fe3791f95ea7d59b77bb68 /meta/recipes-devtools/python/python3/python3-manifest.json
parent0764538eb7dfab3e6bc60c30105fb4f83aa96ec3 (diff)
downloadpoky-f071b059a049787563c612fa532ba84cd000cd21.tar.gz
python3-manifest: add statistics subpackage
cpython/Lib/statistics.py contains common statistics functions """ Basic statistics module. This module provides functions for calculating statistics of data, including averages, variance, and standard deviation. """ (From OE-Core rev: cf1c49fea90e11bc037025e15e44f705a12385bf) Signed-off-by: Tim Orling <timothy.t.orling@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3/python3-manifest.json')
-rw-r--r--meta/recipes-devtools/python/python3/python3-manifest.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
index 615dc3a5e5..d65cf49cb8 100644
--- a/meta/recipes-devtools/python/python3/python3-manifest.json
+++ b/meta/recipes-devtools/python/python3/python3-manifest.json
@@ -814,6 +814,7 @@
814 "shell", 814 "shell",
815 "smtpd", 815 "smtpd",
816 "sqlite3", 816 "sqlite3",
817 "statistics",
817 "stringold", 818 "stringold",
818 "syslog", 819 "syslog",
819 "terminal", 820 "terminal",
@@ -1085,6 +1086,20 @@
1085 ], 1086 ],
1086 "cached": [] 1087 "cached": []
1087 }, 1088 },
1089 "statistics": {
1090 "summary": "Basic statistics module",
1091 "rdepends": [
1092 "core",
1093 "math",
1094 "numbers"
1095 ],
1096 "files": [
1097 "${libdir}/python${PYTHON_MAJMIN}/statistics.py"
1098 ],
1099 "cached": [
1100 "${libdir}/python${PYTHON_MAJMIN}/__pycache__/statistics.*.pyc"
1101 ]
1102 },
1088 "stringold": { 1103 "stringold": {
1089 "summary": "Python string APIs [deprecated]", 1104 "summary": "Python string APIs [deprecated]",
1090 "rdepends": [ 1105 "rdepends": [