8000 MAINT: Update pavement.py script. · juliantaylor/numpy@e4d9030 · GitHub
[go: up one dir, main page]

Skip to content

Commit e4d9030

Browse files
committed
MAINT: Update pavement.py script.
Remove builds for Python 2.6 and 3.1 Update release notes path to doc/release/1.9.0-notes.rst. Set LOG_START to 'branch-1.8.x'
1 parent d958dec commit e4d9030

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

pavement.py

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,17 @@
9999
#-----------------------------------
100100

101101
# Source of the release notes
102-
RELEASE_NOTES = 'doc/release/2.0.0-notes.rst'
102+
RELEASE_NOTES = 'doc/release/1.9.0-notes.rst'
103103

104104
# Start/end of the log (from git)
105-
LOG_START = 'v1.6.0'
105+
LOG_START = 'v1.8.0b1'
106106
LOG_END = 'master'
107107

108108

109109
#-------------------------------------------------------
110110
# Hardcoded build/install dirs, virtualenv options, etc.
111111
#-------------------------------------------------------
112-
DEFAULT_PYTHON = "2.6"
112+
DEFAULT_PYTHON = "2.7"
113113

114114
# Where to put the final installers, as put on sourceforge
115115
SUPERPACK_BUILD = 'build-superpack'
@@ -134,10 +134,8 @@
134134
)
135135

136136
MPKG_PYTHON = {
137-
"2.5": ["/Library/Frameworks/Python.framework/Versions/2.5/bin/python"],
138137
"2.6": ["/Library/Frameworks/Python.framework/Versions/2.6/bin/python"],
139138
"2.7": ["/Library/Frameworks/Python.framework/Versions/2.7/bin/python"],
140-
"3.1": ["/Library/Frameworks/Python.framework/Versions/3.1/bin/python3"],
141139
"3.2": ["/Library/Frameworks/Python.framework/Versions/3.2/bin/python3"],
142140
"3.3": ["/Library/Frameworks/Python.framework/Versions/3.3/bin/python3"],
143141
}
@@ -152,10 +150,8 @@
152150
WINDOWS_PYTHON = {
153151
"3.3": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python33/python.exe"],
154152
"3.2": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python32/python.exe"],
155-
"3.1": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python31/python.exe"],
156153
"2.7": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python27/python.exe"],
157154
"2.6": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python26/python.exe"],
8000 158-
"2.5": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python25/python.exe"]
159155
}
160156
WINDOWS_ENV = os.environ
161157
WINDOWS_ENV["DYLD_FALLBACK_LIBRARY_PATH"] = "/usr/X11/lib:/usr/lib"
@@ -164,10 +160,8 @@
164160
WINDOWS_PYTHON = {
165161
"3.3": ["C:\Python33\python.exe"],
166162
"3.2": ["C:\Python32\python.exe"],
167-
"3.1": ["C:\Python31\python.exe"],
168163
"2.7": ["C:\Python27\python.exe"],
169164
"2.6": ["C:\Python26\python.exe"],
170-
"2.5": ["C:\Python25\python.exe"],
171165
}
172166
# XXX: find out which env variable is necessary to avoid the pb with python
173167
# 2.6 and random module when importing tempfile
@@ -177,10 +171,8 @@
177171
WINDOWS_PYTHON = {
178172
"3.3": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python33/python.exe"],
179173
"3.2": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python32/python.exe"],
180-
"3.1": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python31/python.exe"],
181174
"2.7": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python27/python.exe"],
182175
"2.6": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python26/python.exe"],
183-
"2.5": [& 480B quot;wine", os.environ['HOME'] + "/.wine/drive_c/Python25/python.exe"]
184176
}
185177
WINDOWS_ENV = os.environ
186178
MAKENSIS = ["wine", "makensis"]

0 commit comments

Comments
 (0)
0