Skip to content

Commit ea084df

Browse files
committed
typo in the tcl/tk win32 includes
svn path=/trunk/matplotlib/; revision=3678
1 parent 13ed1fd commit ea084df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setupext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -676,10 +676,10 @@ def add_tk_flags(module):
676676
if sys.platform=='win32':
677677
major, minor1, minor2, s, tmp = sys.version_info
678678
if major==2 and minor1 in [3, 4, 5]:
679-
module.include_dirs.extend(['win32_static/include/tcl84'])
679+
module.include_dirs.extend(['win32_static/include/tcl8.4'])
680680
module.libraries.extend(['tk84', 'tcl84'])
681681
elif major==2 and minor1==2:
682-
module.include_dirs.extend(['win32_static/include/tcl83'])
682+
module.include_dirs.extend(['win32_static/include/tcl8.3'])
683683
module.libraries.extend(['tk83', 'tcl83'])
684684
else:
685685
raise RuntimeError('No tk/win32 support for this python version yet')

0 commit comments

Comments
 (0)