Skip to content

Commit

Permalink
REL: update release scripts for Python 3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Mar 8, 2011
1 parent 7fa6284 commit 702ae6a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
"2.6": ["/Library/Frameworks/Python.framework/Versions/2.6/bin/python"],
"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"],
}

SSE3_CFG = {'ATLAS': r'C:\local\lib\yop\sse3'}
Expand All @@ -135,6 +136,7 @@

if sys.platform =="darwin":
WINDOWS_PYTHON = {
"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"],
"2.6": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python26/python.exe"],
Expand All @@ -145,7 +147,8 @@
MAKENSIS = ["wine", "makensis"]
elif sys.platform == "win32":
WINDOWS_PYTHON = {
"3.1": ["C:\Python31\python3.exe"],
"3.2": ["C:\Python32\python.exe"],
"3.1": ["C:\Python31\python.exe"],
"2.7": ["C:\Python27\python.exe"],
"2.6": ["C:\Python26\python.exe"],
"2.5": ["C:\Python25\python.exe"],
Expand All @@ -156,6 +159,7 @@
MAKENSIS = ["makensis"]
else:
WINDOWS_PYTHON = {
"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"],
"2.6": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python26/python.exe"],
Expand Down
1 change: 1 addition & 0 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ paver sdist
export MACOSX_DEPLOYMENT_TARGET=10.6
paver dmg -p 2.7 # 32/64-bit version

paver bdist_superpack -p 3.2
paver bdist_superpack -p 3.1
paver bdist_superpack -p 2.7
paver bdist_superpack -p 2.6
Expand Down

0 comments on commit 702ae6a

Please sign in to comment.