|
99 | 99 | #-----------------------------------
|
100 | 100 |
|
101 | 101 | # 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' |
103 | 103 |
|
104 | 104 | # Start/end of the log (from git)
|
105 |
| -LOG_START = 'v1.6.0' |
| 105 | +LOG_START = 'v1.8.0b1' |
106 | 106 | LOG_END = 'master'
|
107 | 107 |
|
108 | 108 |
|
109 | 109 | #-------------------------------------------------------
|
110 | 110 | # Hardcoded build/install dirs, virtualenv options, etc.
|
111 | 111 | #-------------------------------------------------------
|
112 |
| -DEFAULT_PYTHON = "2.6" |
| 112 | +DEFAULT_PYTHON = "2.7" |
113 | 113 |
|
114 | 114 | # Where to put the final installers, as put on sourceforge
|
115 | 115 | SUPERPACK_BUILD = 'build-superpack'
|
|
134 | 134 | )
|
135 | 135 |
|
136 | 136 | MPKG_PYTHON = {
|
137 |
| - "2.5": ["/Library/Frameworks/Python.framework/Versions/2.5/bin/python"], |
138 | 137 | "2.6": ["/Library/Frameworks/Python.framework/Versions/2.6/bin/python"],
|
139 | 138 | "2.7": ["/Library/Frameworks/Python.framework/Versions/2.7/bin/python"],
|
140 |
| - "3.1": ["/Library/Frameworks/Python.framework/Versions/3.1/bin/python3"], |
141 | 139 | "3.2": ["/Library/Frameworks/Python.framework/Versions/3.2/bin/python3"],
|
142 | 140 | "3.3": ["/Library/Frameworks/Python.framework/Versions/3.3/bin/python3"],
|
143 | 141 | }
|
|
152 | 150 | WINDOWS_PYTHON = {
|
153 | 151 | "3.3": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python33/python.exe"],
|
154 | 152 | "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"], |
156 | 153 | "2.7": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python27/python.exe"],
|
157 | 154 | "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"] |
159 | 155 | }
|
160 | 156 | WINDOWS_ENV = os.environ
|
161 | 157 | WINDOWS_ENV["DYLD_FALLBACK_LIBRARY_PATH"] = "/usr/X11/lib:/usr/lib"
|
|
164 | 160 | WINDOWS_PYTHON = {
|
165 | 161 | "3.3": ["C:\Python33\python.exe"],
|
166 | 162 | "3.2": ["C:\Python32\python.exe"],
|
167 |
| - "3.1": ["C:\Python31\python.exe"], |
168 | 163 | "2.7": ["C:\Python27\python.exe"],
|
169 | 164 | "2.6": ["C:\Python26\python.exe"],
|
170 |
| - "2.5": ["C:\Python25\python.exe"], |
171 | 165 | }
|
172 | 166 | # XXX: find out which env variable is necessary to avoid the pb with python
|
173 | 167 | # 2.6 and random module when importing tempfile
|
|
177 | 171 | WINDOWS_PYTHON = {
|
178 | 172 | "3.3": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python33/python.exe"],
|
179 | 173 | "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"], |
181 | 174 | "2.7": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python27/python.exe"],
|
182 | 175 | "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"] |
184 | 176 | }
|
185 | 177 | WINDOWS_ENV = os.environ
|
186 | 178 | MAKENSIS = ["wine", "makensis"]
|
|
0 commit comments