From: Armin Ronacher Date: Wed, 18 Aug 2010 09:10:50 +0000 (+0200) Subject: Preparing for a 2.5.2 release. Fixed an issue with setup.py X-Git-Tag: 2.5.3~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4603694a92803ed30dfa6fd22890ed9ea7d5f9da;p=jinja2.git Preparing for a 2.5.2 release. Fixed an issue with setup.py --HG-- branch : trunk --- diff --git a/CHANGES b/CHANGES index 5ad58e1..e31a32a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,14 @@ Jinja2 Changelog ================ +Version 2.5.2 +------------- +(bugfix release, released on August 18th 2010) + +- improved setup.py script to better work with assumptions people + might still have from it (``--with-speedups``). +- fixed a packaging error that excluded the new debug support. + Version 2.5.1 ------------- (bugfix release, released on August 17th 2010) diff --git a/MANIFEST.in b/MANIFEST.in index f593398..713f21a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include MANIFEST.in Makefile CHANGES LICENSE AUTHORS jinja2/_speedups.c +include MANIFEST.in Makefile CHANGES LICENSE AUTHORS jinja2/_debugsupport.c recursive-include docs * recursive-include custom_fixers * recursive-include ext * diff --git a/setup.py b/setup.py index cf915cc..ff07040 100644 --- a/setup.py +++ b/setup.py @@ -62,10 +62,21 @@ if sys.version_info >= (3, 0): use_2to3_fixers=['custom_fixers'] ) +# ignore the old '--with-speedups' flag +try: + speedups_pos = sys.argv.index('--with-speedups') +except IndexError: + pass +else: + sys.argv[speedups_pos] = '--with-debugsupport' + print >> sys.stderr, 'the --with-speedups flag is deprecated' + print >> sys.stderr, 'assuming --with-debugsupport' + print >> sys.stderr, 'for speedups install MarkupSafe' + setup( name='Jinja2', - version='2.6', + version='2.5.2', url='http://jinja.pocoo.org/', license='BSD', author='Armin Ronacher',