Prune unsupported versions from Makefile.
authorFlorent Xicluna <florent.xicluna@gmail.com>
Wed, 13 Jun 2012 21:48:21 +0000 (23:48 +0200)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Wed, 13 Jun 2012 21:48:21 +0000 (23:48 +0200)
Makefile

index f8e6dd21ef12b2a353b4769b4ec47ee6c2bc5aa3..887cb26d274e23a9274b167a994910c1c2a21db9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ test :
        python pep8.py --testsuite testsuite
 
 selftest :
-       python pep8.py --repeat --statistics pep8.py
+       python pep8.py --statistics pep8.py
 
 doctest :
        python pep8.py --doctest
@@ -10,27 +10,18 @@ doctest :
 alltest : test selftest doctest
 
 multitest :
-       python2.3 pep8.py --testsuite testsuite
-       python2.4 pep8.py --testsuite testsuite
        python2.5 pep8.py --testsuite testsuite
        python2.6 pep8.py --testsuite testsuite
        python2.7 pep8.py --testsuite testsuite
-       python3.0 pep8.py --testsuite testsuite
        python3.1 pep8.py --testsuite testsuite
        python3.2 pep8.py --testsuite testsuite
-       python2.3 pep8.py --doctest
-       python2.4 pep8.py --doctest
        python2.5 pep8.py --doctest
        python2.6 pep8.py --doctest
        python2.7 pep8.py --doctest
-       python3.0 pep8.py --doctest
        python3.1 pep8.py --doctest
        python3.2 pep8.py --doctest
-       python2.3 pep8.py --statistics pep8.py
-       python2.4 pep8.py --statistics pep8.py
        python2.5 pep8.py --statistics pep8.py
        python2.6 pep8.py --statistics pep8.py
        python2.7 pep8.py --statistics pep8.py
-       python3.0 pep8.py --statistics pep8.py
        python3.1 pep8.py --statistics pep8.py
        python3.2 pep8.py --statistics pep8.py