diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-02-25 10:20:51 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-02-25 10:20:51 -0500 |
commit | 27c51e24acc702bbd65752d7d779c0cbd1061827 (patch) | |
tree | 7a2826d22d94a2b7d9b936d249568f1e6a316252 | |
parent | a76c3c6f367565fb7153cd15ea2c08f38ecbe818 (diff) | |
download | markdown-27c51e24acc702bbd65752d7d779c0cbd1061827.tar.gz markdown-27c51e24acc702bbd65752d7d779c0cbd1061827.tar.bz2 markdown-27c51e24acc702bbd65752d7d779c0cbd1061827.zip |
Update tests to only run on supported versions of python.
-rw-r--r-- | fabfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |