Ubuntu Pastebin

Paste from rharper at Thu, 8 Jun 2017 18:02:39 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
commit c771f3efb70ee08ccfb76bcb1ba416bd2c68c7c5 (HEAD -> master)
Author: Ryan Harper <ryan.harper@canonical.com>
Date:   Thu Jun 8 13:01:09 2017 -0500

    Drop cheetah python module as it is not needed by trunk
    
    Cloud-init's template renderer does not require the use of cheetah
    so do not put it in the list of package requirements.

diff --git a/setup.py b/setup.py
index d522328..bce06ad 100755
--- a/setup.py
+++ b/setup.py
@@ -221,8 +221,6 @@ cmdclass = {
 }
 
 requirements = read_requires()
-if sys.version_info < (3,):
-    requirements.append('cheetah')
 
 setuptools.setup(
     name='cloud-init',
Download as text