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

Skip to content

Enable building on Python 3.3 for Windows #1047

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Enable building on Python 3.3 for Windows
  • Loading branch information
cgohlke committed Jul 29, 2012
commit 8c0d1fb224285a7564ac08dbc11d3bdcf10f44d7
2 changes: 1 addition & 1 deletion setupext.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down