aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2018-01-16 13:23:21 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2018-01-16 13:23:21 -0500
commita582879d89ac6e37b9daa8b3c820ebedddad2aea (patch)
treec52c26b30292db25cbef0a89021c205dd0ccb44f
parent200398c6fba989a7f72779e62fd326b28d12cdf2 (diff)
downloadexternal_python_mako-a582879d89ac6e37b9daa8b3c820ebedddad2aea.tar.gz
external_python_mako-a582879d89ac6e37b9daa8b3c820ebedddad2aea.tar.bz2
external_python_mako-a582879d89ac6e37b9daa8b3c820ebedddad2aea.zip
Remove redundant Python<2.6 code
Includes PR https://github.com/zzzeek/mako/pull/26 so [Travis CI passes](https://travis-ci.org/hugovk/mako/builds/329346809). The last two commits are unique to this PR. --- Since Mako 1.0.0, Python 2.6 has been the minimum supported version: > [general] Compatibility changes; in order to modernize the codebase, Mako is now dropping support for Python 2.4 and Python 2.5 altogether. The source base is now targeted at Python 2.6 and forwards. http://docs.makotemplates.org/en/latest/changelog.html#change-b602a175c0ec26eaa4f42962d23cca96 This removes redundant code only relevant to Python 2.5 or earlier. It also adds `python_requires` to setup.py, so pip won't install this version on Python 2.5 or earlier. For people with older versions, pip will install the next Mako version down. Are all Python 3.x versions supported? If not, I'll add those to `python_requires` as well. Change-Id: I624e1d56e79555c579278c7a5b4de9498179ffe9 Pull-request: https://github.com/zzzeek/mako/pull/27
-rw-r--r--mako/compat.py1
-rw-r--r--setup.py1
-rw-r--r--test/__init__.py5
-rw-r--r--test/test_ast.py5
-rw-r--r--test/test_template.py5
5 files changed, 4 insertions, 13 deletions
diff --git a/mako/compat.py b/mako/compat.py
index a2ab243..312bbd8 100644
--- a/mako/compat.py
+++ b/mako/compat.py
@@ -4,7 +4,6 @@ import time
py3k = sys.version_info >= (3, 0)
py33 = sys.version_info >= (3, 3)
py2k = sys.version_info < (3,)
-py26 = sys.version_info >= (2, 6)
py27 = sys.version_info >= (2, 7)
jython = sys.platform.startswith('java')
win32 = sys.platform.startswith('win')
diff --git a/setup.py b/setup.py
index 5b64d3f..17714b0 100644
--- a/setup.py
+++ b/setup.py
@@ -71,6 +71,7 @@ setup(name='Mako',
tests_require=['pytest', 'mock'],
cmdclass={'test': PyTest},
zip_safe=False,
+ python_requires='>=2.6',
install_requires=install_requires,
extras_require={},
entry_points="""
diff --git a/test/__init__.py b/test/__init__.py
index 22d1c83..186ec04 100644
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -1,7 +1,7 @@
from mako.template import Template
import unittest
import os
-from mako.compat import py3k, py26, py33
+from mako.compat import py3k, py33
from mako import compat
from mako.util import update_wrapper
import re
@@ -120,9 +120,6 @@ def requires_python_3(fn):
def requires_python_2(fn):
return skip_if(lambda: py3k, "Requires Python 2.xx")(fn)
-def requires_python_26_or_greater(fn):
- return skip_if(lambda: not py26, "Requires Python 2.6 or greater")(fn)
-
def requires_pygments_14(fn):
try:
import pygments
diff --git a/test/test_ast.py b/test/test_ast.py
index 32a1d74..24ba0c3 100644
--- a/test/test_ast.py
+++ b/test/test_ast.py
@@ -1,8 +1,7 @@
import unittest
from mako import ast, exceptions, pyparser, util, compat
-from test import eq_, requires_python_2, requires_python_3, \
- requires_python_26_or_greater
+from test import eq_, requires_python_2, requires_python_3
exception_kwargs = {
'source': '',
@@ -223,7 +222,6 @@ t2 = lambda (x,y):(x+5, y+4)
eq_(parsed.declared_identifiers, set(['t1', 't2']))
eq_(parsed.undeclared_identifiers, set())
- @requires_python_26_or_greater
def test_locate_identifiers_16(self):
code = """
try:
@@ -234,7 +232,6 @@ except Exception as e:
parsed = ast.PythonCode(code, **exception_kwargs)
eq_(parsed.undeclared_identifiers, set(['x', 'y', 'Exception']))
- @requires_python_26_or_greater
def test_locate_identifiers_17(self):
code = """
try:
diff --git a/test/test_template.py b/test/test_template.py
index 7f21978..1f2d0c1 100644
--- a/test/test_template.py
+++ b/test/test_template.py
@@ -10,8 +10,7 @@ import os
from test.util import flatten_result, result_lines
from mako.compat import u
from test import TemplateTest, eq_, template_base, module_base, \
- requires_python_26_or_greater, assert_raises, assert_raises_message, \
- requires_python_2
+ assert_raises, assert_raises_message, requires_python_2
import unittest
class ctx(object):
@@ -910,7 +909,6 @@ class ControlTest(TemplateTest):
filters=lambda s:s.strip()
)
- @requires_python_26_or_greater
def test_blank_control_8(self):
self._do_memory_test(
"""
@@ -1009,7 +1007,6 @@ class ControlTest(TemplateTest):
filters=lambda s:s.strip()
)
- @requires_python_26_or_greater
def test_commented_blank_control_8(self):
self._do_memory_test(
"""