Run `./2to3.py -w jinja2`
[jinja2.git] / setup.py
index 377a1c3a70beeed691910f886d4b3f769c2a1c8c..414795620a176ddcbe342103ebc7516dce8c5566 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -30,20 +30,14 @@ for the template designer too hard by giving him too few functionality.
 
 For more informations visit the new `Jinja2 webpage`_ and `documentation`_.
 
-The `Jinja2 tip`_ is installable via `easy_install` with ``easy_install
-Jinja2==dev``.
-
 .. _sandboxed: http://en.wikipedia.org/wiki/Sandbox_(computer_security)
 .. _Django: http://www.djangoproject.com/
 .. _Jinja2 webpage: http://jinja.pocoo.org/
 .. _documentation: http://jinja.pocoo.org/2/documentation/
-.. _Jinja2 tip: http://dev.pocoo.org/hg/jinja2-main/archive/tip.tar.gz#egg=Jinja2-dev
 """
-import os
 import sys
 
 from setuptools import setup, Extension, Feature
-from distutils.command.build_ext import build_ext
 
 debugsupport = Feature(
     'optional C debug support',
@@ -65,7 +59,7 @@ if sys.version_info >= (3, 0):
 # ignore the old '--with-speedups' flag
 try:
     speedups_pos = sys.argv.index('--with-speedups')
-except IndexError:
+except ValueError:
     pass
 else:
     sys.argv[speedups_pos] = '--with-debugsupport'
@@ -80,7 +74,7 @@ else:
 
 setup(
     name='Jinja2',
-    version='2.5.2',
+    version='2.7-dev',
     url='http://jinja.pocoo.org/',
     license='BSD',
     author='Armin Ronacher',