summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2013-02-25 10:20:51 -0500
committerWaylan Limberg <waylan@gmail.com>2013-02-25 10:20:51 -0500
commit27c51e24acc702bbd65752d7d779c0cbd1061827 (patch)
tree7a2826d22d94a2b7d9b936d249568f1e6a316252
parenta76c3c6f367565fb7153cd15ea2c08f38ecbe818 (diff)
downloadpython-markdown-27c51e24acc702bbd65752d7d779c0cbd1061827.tar.gz
Update tests to only run on supported versions of python.
-rw-r--r--fabfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fabfile.py b/fabfile.py
index b50f007..afd563c 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -10,7 +10,7 @@ from sys import platform
def _get_versions():
""" Find and comfirm all supported versions of Python. """
vs = []
- for v in ['2.5', '2.6', '2.7', '3.1', '3.2']:
+ for v in ['2.6', '2.7', '3.1', '3.2', '3.3']:
with settings(
hide('warnings', 'running', 'stdout', 'stderr'),
warn_only=True