Skip to content

Commit

Permalink
MAINT: add python3.4 to paver file
Browse files Browse the repository at this point in the history
  • Loading branch information
juliantaylor committed Feb 28, 2014
1 parent 447c724 commit b3f4975
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 @@ -137,6 +137,7 @@
"2.7": ["/Library/Frameworks/Python.framework/Versions/2.7/bin/python"],
"3.2": ["/Library/Frameworks/Python.framework/Versions/3.2/bin/python3"],
"3.3": ["/Library/Frameworks/Python.framework/Versions/3.3/bin/python3"],
"3.4": ["/Library/Frameworks/Python.framework/Versions/3.4/bin/python3"],
}

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

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

0 comments on commit b3f4975

Please sign in to comment.