summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2009-08-05 18:45:39 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2009-08-05 18:45:39 +0200
commit42a198801392e81a1632c9e3914759e6862f5e82 (patch)
treeaa83cbad4db9ac0e31847365b06997b95bacfcb1 /Makefile
parentc421efe074dbedd5c3338d3abcb5ca195ce77d71 (diff)
downloadjinja2-42a198801392e81a1632c9e3914759e6862f5e82.tar.gz
Started to work on Python 3 support.
--HG-- branch : trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cfc315c..6cd734a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,11 @@
test:
cd tests; nosetests -v
+2to3:
+ rm -rf py3k
+ mkdir py3k
+ cp -R jinja2 py3k
+ 2to3 jinja2 > py3k/convert.patch
+ cd py3k; patch -p0 < convert.patch
+
.PHONY: test