Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7e14561

Browse files
committed
Merge pull request #1047 from cgohlke/patch-1
Enable building on Python 3.3 for Windows
2 parents 5675ffa + 8c0d1fb commit 7e14561

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ def add_tk_flags(module):
942942
message = None
943943
if sys.platform == 'win32':
944944
major, minor1, minor2, s, tmp = sys.version_info
945-
if (2, 6) <= (major, minor1) <= (3, 2):
945+
if (2, 6) <= (major, minor1) <= (3, 3):
946946
module.include_dirs.extend(['win32_static/include/tcl85'])
947947
module.libraries.extend(['tk85', 'tcl85'])
948948
elif major == 2 and minor1 in [3, 4, 5]:

0 commit comments

Comments
 (0)