summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2013-03-15 00:54:37 +0700
committerStuart Bishop <stuart@stuartbishop.net>2013-03-15 00:54:37 +0700
commit77af0262e81912e92e6bd8f018614d95380fbaa6 (patch)
tree936b996334aa1a15aeac6e3bee78f25e694f54f8
parent42126f388e988569e2312e7a5f8d79b2e2af7c30 (diff)
downloadpytz-77af0262e81912e92e6bd8f018614d95380fbaa6.tar.gz
Python 3.3 for tests, but egg building is failing
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5a63dce..4913ac0 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,8 @@ PYTHON26=python2.6
PYTHON27=python2.7
PYTHON31=python3.1
PYTHON32=python3.2
-PYTHON=${PYTHON26}
+PYTHON33=python3.3
+PYTHON=${PYTHON27}
PYTHON3=${PYTHON32}
OLSON=./elsie.nci.nih.gov
TESTARGS=-vv
@@ -71,7 +72,8 @@ test_tzinfo: .stamp-tzinfo
&& ${PYTHON26} test_tzinfo.py ${TESTARGS} \
&& ${PYTHON27} test_tzinfo.py ${TESTARGS} \
&& ${PYTHON31} test_tzinfo.py ${TESTARGS} \
- && ${PYTHON32} test_tzinfo.py ${TESTARGS}
+ && ${PYTHON32} test_tzinfo.py ${TESTARGS} \
+ && ${PYTHON33} test_tzinfo.py ${TESTARGS}
test_docs: .stamp-tzinfo
cd build/dist/pytz/tests \
@@ -80,7 +82,8 @@ test_docs: .stamp-tzinfo
&& ${PYTHON26} test_docs.py ${TESTARGS} \
&& ${PYTHON27} test_docs.py ${TESTARGS} \
&& ${PYTHON31} test_docs.py ${TESTARGS} \
- && ${PYTHON32} test_docs.py ${TESTARGS}
+ && ${PYTHON32} test_docs.py ${TESTARGS} \
+ && ${PYTHON33} test_docs.py ${TESTARGS}
test_zdump: dist
${PYTHON} gen_tests.py ${TARGET} && \