8000 Enable building on Python 3.3 for Windows · matplotlib/matplotlib@8c0d1fb · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8c0d1fb

Browse files
committed
Enable building on Python 3.3 for Windows
1 parent 5675ffa commit 8c0d1fb

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)
0