aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python
diff options
context:
space:
mode:
authorDerek Straka <derek@asterius.io>2018-01-25 11:59:29 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-29 08:49:44 +0000
commit4ca2d607a6b6fe8686bf89177287f2b9bae01245 (patch)
tree91e43385af110004c984492fbf95f561282c8672 /meta/recipes-devtools/python
parenta321b28c8dafc9775f465ce7c0f6bcbe8ccc2945 (diff)
downloadopenembedded-core-contrib-4ca2d607a6b6fe8686bf89177287f2b9bae01245.tar.gz
python3-manifest: add the _pydecimal files to the numbers package
The _pydecimal files are required to use the numbers package and downstream packages are currently required to add a RDEPENDS on python3-misc to avoid an import error Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r--meta/recipes-devtools/python/python3/python3-manifest.json8
1 files changed, 5 insertions, 3 deletions
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
index ef9826f02c..5b7b70b346 100644
--- a/meta/recipes-devtools/python/python3/python3-manifest.json
+++ b/meta/recipes-devtools/python/python3/python3-manifest.json
@@ -799,13 +799,15 @@
"cached": [
"${libdir}/python3.5/__pycache__/decimal.*.pyc",
"${libdir}/python3.5/__pycache__/fractions.*.pyc",
- "${libdir}/python3.5/__pycache__/numbers.*.pyc"
+ "${libdir}/python3.5/__pycache__/numbers.*.pyc",
+ "${libdir}/python3.5/__pycache__/_pydecimal.*.pyc"
],
"files": [
"${libdir}/python3.5/decimal.py",
"${libdir}/python3.5/fractions.py",
"${libdir}/python3.5/lib-dynload/_decimal.*.so",
- "${libdir}/python3.5/numbers.py"
+ "${libdir}/python3.5/numbers.py",
+ "${libdir}/python3.5/_pydecimal.py"
],
"rdepends": [
"core"
@@ -1137,4 +1139,4 @@
],
"summary": "Python XML-RPC support"
}
-} \ No newline at end of file
+}