File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ def get_tool_path(relpath, checkfunc):
189
189
python_desc = 'Python programming language with standard library'
190
190
return """## WinPython %s
191
191
192
- The following packages are included in WinPython-%s v%s%s.
192
+ The following packages are included in WinPython-%sbit v%s%s.
193
193
194
194
### Tools
195
195
@@ -220,7 +220,7 @@ def python_dir(self):
220
220
@property
221
221
def winpy_arch (self ):
222
222
"""Return WinPython architecture"""
223
- return '%dbit ' % self .distribution .architecture
223
+ return '%d ' % self .distribution .architecture
224
224
225
225
@property
226
226
def pyqt_arch (self ):
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Licensed under the terms of the MIT License
18
18
; ================================================================
19
19
20
20
!define ID " WinPython"
21
+ !define ID_INSTALL " WinPy"
21
22
!define FILE_DESCRIPTION " ${ID} Installer"
22
23
!define COMPANY " ${ID}"
23
24
!define BRANDING " ${ID}, the portable Python Distribution for Scientists"
@@ -34,8 +35,11 @@ SetCompressorDictSize 16 ; MB
34
35
; General
35
36
; ------------------------------------------------------------------------------
36
37
Name " ${ID} ${ARCH} ${VERSION}${RELEASELEVEL}"
37
- OutFile " ${DISTDIR}\..\${ID}-${ARCH}-${VERSION}${RELEASELEVEL}.exe"
38
- InstallDir " $EXEDIR\${ID}-${ARCH}-${VERSION}${RELEASELEVEL}"
38
+ OutFile " ${DISTDIR}\..\${ID}${ARCH}-${VERSION}${RELEASELEVEL}.exe"
39
+
40
+ ; 2018-03-31 need to minimize path length of installation:
41
+ ; InstallDir "$EXEDIR\${ID}${ARCH}-${VERSION}${RELEASELEVEL}"
42
+ InstallDir " $EXEDIR\${ID_INSTALL}${ARCH}-${VERSION}${RELEASELEVEL}"
39
43
BrandingText " ${BRANDING}"
40
44
XPStyle on
41
45
RequestExecutionLevel user
Original file line number Diff line number Diff line change 28
28
OTHER DEALINGS IN THE SOFTWARE.
29
29
"""
30
30
31
- __version__ = '1.9.20180301 '
31
+ __version__ = '1.9.20180331 '
32
32
__license__ = __doc__
33
33
__project_url__ = 'http://winpython.github.io/'
You can’t perform that action at this time.
0 commit comments