summaryrefslogtreecommitdiff
path: root/requirements.txt
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2015-01-21 15:28:32 -0500
committerBarry Warsaw <barry@python.org>2015-01-21 15:28:32 -0500
commit463d626ba53e54160f350d84831e1877b24f4024 (patch)
treee13078db48bf17c062ced1ce1feed78ddd3a9da0 /requirements.txt
parentee4a174e2e3b3268ef95485b99d81edea1ca3458 (diff)
downloadvyos-cloud-init-463d626ba53e54160f350d84831e1877b24f4024.tar.gz
vyos-cloud-init-463d626ba53e54160f350d84831e1877b24f4024.zip
Only install cheetah (and only run the cheetah templating test) when in Python
2. Cheetah is not compatible with Python 3.
Diffstat (limited to 'requirements.txt')
-rw-r--r--requirements.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt
index 943dbef7..2a12ca3e 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,7 +1,6 @@
# Pypi requirements for cloud-init to work
# Used for untemplating any files or strings with parameters.
-cheetah
jinja2
# This is used for any pretty printing of tabular data.
@@ -32,3 +31,6 @@ requests
# For patching pieces of cloud-config together
jsonpatch
+
+# For Python 2/3 compatibility
+six