From 8c0d1fb224285a7564ac08dbc11d3bdcf10f44d7 Mon Sep 17 00:00:00 2001 From: cgohlke Date: Sat, 28 Jul 2012 18:37:09 -0700 Subject: [PATCH] Enable building on Python 3.3 for Windows --- setupext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setupext.py b/setupext.py index 0a218beef76d..7dc1e2a9285b 100644 --- a/setupext.py +++ b/setupext.py @@ -942,7 +942,7 @@ def add_tk_flags(module): message = None if sys.platform == 'win32': major, minor1, minor2, s, tmp = sys.version_info - if (2, 6) <= (major, minor1) <= (3, 2): + if (2, 6) <= (major, minor1) <= (3, 3): module.include_dirs.extend(['win32_static/include/tcl85']) module.libraries.extend(['tk85', 'tcl85']) elif major == 2 and minor1 in [3, 4, 5]: