From be8e9ced88a366228b41a64045e9cbfa8fa51928 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 25 Aug 2017 22:46:13 +0200 Subject: Remove support and special handling code for Py3.2. --- Cython/Compiler/ModuleNode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Cython/Compiler/ModuleNode.py') diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index e1b3ad995..c3f900b71 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -619,8 +619,8 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): code.putln(" #error Python headers needed to compile C extensions, " "please install development version of Python.") code.putln("#elif PY_VERSION_HEX < 0x02060000 || " - "(0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03020000)") - code.putln(" #error Cython requires Python 2.6+ or Python 3.2+.") + "(0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000)") + code.putln(" #error Cython requires Python 2.6+ or Python 3.3+.") code.putln("#else") code.globalstate["end"].putln("#endif /* Py_PYTHON_H */") -- cgit v1.2.1