File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -381,6 +381,8 @@ def create_installer(self):
381
381
('ARCH' , self .winpy_arch ),
382
382
('VERSION' , '%s.%d%s' % (self .python_fullversion ,
383
383
self .build_number , self .flavor )),
384
+ ('VERSION_INSTALL' , '%s.%d' % (self .python_fullversion ,
385
+ self .build_number )),
384
386
('RELEASELEVEL' , self .release_level ),)
385
387
build_nsis ('installer.nsi' , fname , data )
386
388
self ._print_done ()
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ Licensed under the terms of the MIT License
14
14
!define DISTDIR " D:\Pierre\maketest\winpython-2.7.3.amd64"
15
15
!define ARCH " 16bit"
16
16
!define VERSION " 2.7.3.0"
17
+ ; 2018-04-04 need to minimize path length of installation further: remove flavor in install path
18
+ !define VERSION_INSTALL " 2.7.3.0"
17
19
!define RELEASELEVEL " beta2" ; empty means final release
18
20
; ================================================================
19
21
@@ -39,7 +41,9 @@ OutFile "${DISTDIR}\..\${ID}${ARCH}-${VERSION}${RELEASELEVEL}.exe"
39
41
40
42
; 2018-03-31 need to minimize path length of installation:
41
43
; InstallDir "$EXEDIR\${ID}${ARCH}-${VERSION}${RELEASELEVEL}"
42
- InstallDir " $EXEDIR\${ID_INSTALL}${ARCH}-${VERSION}${RELEASELEVEL}"
44
+ ; 2018-04-04 need to minimize path length of installation further: remove arch + flavor
45
+ ; InstallDir "$EXEDIR\${ID_INSTALL}${ARCH}-${VERSION}${RELEASELEVEL}"
46
+ InstallDir " $EXEDIR\${ID_INSTALL}-${VERSION_INSTALL}${RELEASELEVEL}"
43
47
BrandingText " ${BRANDING}"
44
48
XPStyle on
45
49
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.20180331 '
31
+ __version__ = '1.10.20180404 '
32
32
__license__ = __doc__
33
33
__project_url__ = 'http://winpython.github.io/'
You can’t perform that action at this time.
0 commit comments