From eeab210698adbee1bfea1ee759d2786b303f8f3f Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 13 May 2012 06:13:11 +0200 Subject: [PATCH] Expand the range of Python versions for unittests 3.3 has some issues (refuses to recognise 'test-suite') on my machine, not yet enabled. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 41e203e..0ba620d 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ $(DOCHTML)/index.html: $(MODNAME) $(RSTFILES) doc: $(DOCHTML)/index.html test: - for ver in 2.4 2.5 2.6 3.0 3.1; do \ + for ver in 2.4 2.5 2.6 2.7 3.0 3.1 3.2; do \ if type python$$ver >/dev/null; then \ echo Testing with python$$ver; \ python$$ver ./setup.py test; \ -- 2.39.2