diff options
author | Koen Kooi <koen.kooi@linaro.org> | 2015-08-10 17:42:46 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-08-24 13:56:26 +0200 |
commit | 42fcf360806f6131da534af29d40dbfe3d44b408 (patch) | |
tree | 6bdec8a103cfa7591e65fd4fc1816f6255793054 /meta-python/recipes-devtools | |
parent | a9a60936869e1cd8d2481f9fd06849b42f17a109 (diff) | |
download | meta-openembedded-42fcf360806f6131da534af29d40dbfe3d44b408.tar.gz |
python-pyyaml 3.10: unbreak versioning
Using our own setup.py is great, but it should use the same version as the recipe, otherwise you get errors like these:
pkg_resources.DistributionNotFound: The 'PyYAML==3.10' distribution was not found and is required
Package python-pyyaml (3.10-r0.0) is installed on root and has the following files:
[..]
/usr/lib/python2.7/site-packages/PyYAML-3.06-py2.7.egg-info
Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools')
-rw-r--r-- | meta-python/recipes-devtools/python/python-pyyaml/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python-pyyaml/setup.py b/meta-python/recipes-devtools/python/python-pyyaml/setup.py index fb6498341..2ed1c94be 100644 --- a/meta-python/recipes-devtools/python/python-pyyaml/setup.py +++ b/meta-python/recipes-devtools/python/python-pyyaml/setup.py | |||
@@ -1,5 +1,5 @@ | |||
1 | NAME = 'PyYAML' | 1 | NAME = 'PyYAML' |
2 | VERSION = '3.06' | 2 | VERSION = '3.10' |
3 | DESCRIPTION = "YAML parser and emitter for Python" | 3 | DESCRIPTION = "YAML parser and emitter for Python" |
4 | LONG_DESCRIPTION = """\ | 4 | LONG_DESCRIPTION = """\ |
5 | YAML is a data serialization format designed for human readability and | 5 | YAML is a data serialization format designed for human readability and |