juju / txjuju

A Twisted-based Juju client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Need to use 'pyyaml' instead of 'yaml' in dependency list

fginther opened this issue · comments

Basically this:

diff --git a/setup.py b/setup.py
index e241ed3..a33ab45 100644
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ for path, dirs, files in os.walk(package_name):
 
 DEPS = [
         'twisted',
-        'yaml',
+        'pyyaml',
         ]
 TESTING_DEPS = [
         'fixtures',

The debian package python-yaml is built from pyyaml and should use the same name. Also there appears to be no 'yaml' package and this breaks on yakkety builds.