Skip to content

Commit

Permalink
BLD: Add support for Python 3.3 in paver
Browse files Browse the repository at this point in the history
  • Loading branch information
certik committed Dec 28, 2012
1 parent ec8236e commit e924692
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@
"2.7": ["/Library/Frameworks/Python.framework/Versions/2.7/bin/python"],
"3.1": ["/Library/Frameworks/Python.framework/Versions/3.1/bin/python3"],
"3.2": ["/Library/Frameworks/Python.framework/Versions/3.2/bin/python3"],
"3.3": ["/Library/Frameworks/Python.framework/Versions/3.3/bin/python3"],
}

SSE3_CFG = {'ATLAS': r'C:\local\lib\atlas\sse3'}
Expand All @@ -148,6 +149,7 @@

if sys.platform =="darwin":
WINDOWS_PYTHON = {
"3.3": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python33/python.exe"],
"3.2": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python32/python.exe"],
"3.1": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python31/python.exe"],
"2.7": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python27/python.exe"],
Expand All @@ -159,6 +161,7 @@
MAKENSIS = ["wine", "makensis"]
elif sys.platform == "win32":
WINDOWS_PYTHON = {
"3.3": ["C:\Python33\python.exe"],
"3.2": ["C:\Python32\python.exe"],
"3.1": ["C:\Python31\python.exe"],
"2.7": ["C:\Python27\python.exe"],
Expand All @@ -171,6 +174,7 @@
MAKENSIS = ["makensis"]
else:
WINDOWS_PYTHON = {
"3.3": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python33/python.exe"],
"3.2": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python32/python.exe"],
"3.1": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python31/python.exe"],
"2.7": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python27/python.exe"],
Expand Down

0 comments on commit e924692

Please sign in to comment.