From: Berker Peksag Date: Mon, 19 May 2014 03:55:02 +0000 (+0300) Subject: Delete the ignore --with-speedups message. X-Git-Tag: 2.8~96^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb470a2cd82fbf276e612eca12d87c0a72780740;p=thirdparty%2Fjinja.git Delete the ignore --with-speedups message. The with-speedups flag was deprecated 4 years and 3 major releases ago. --- diff --git a/setup.py b/setup.py index d4acf24d..6943f53d 100644 --- a/setup.py +++ b/setup.py @@ -40,21 +40,6 @@ import sys from setuptools import setup -# ignore the old '--with-speedups' flag -try: - speedups_pos = sys.argv.index('--with-speedups') -except ValueError: - pass -else: - del sys.argv[speedups_pos] - sys.stderr.write('*' * 74 + '\n') - sys.stderr.write('WARNING:\n') - sys.stderr.write(' the --with-speedups flag is deprecated\n') - sys.stderr.write(' For the actual speedups install the MarkupSafe ' - 'package.\n') - sys.stderr.write('*' * 74 + '\n') - - setup( name='Jinja2', version='2.8-dev',