@@ -462,15 +462,13 @@ def _install_required_packages(self):
462
462
if self .python_version == '3.3' :
463
463
self .install_package ('get-pip-([0-9\.]*[a-z]*[0-9]?).%s(-py%s)?.exe'
464
464
% (self .py_arch , self .python_version ))
465
- if self .python_version == '2.7' :
465
+ if self .python_version == '2.7' or self . python_version == '3.4' :
466
466
self .install_package ('%s-([0-9\.]*[a-z]*[0-9]?)(.*)(\.exe|\.whl)' %
467
- 'setuptools' , install_options = ['--upgrade' , '--no-deps' ])
468
- self .install_package ('%s-([0-9\.]*[a-z]*[0-9]?)(.*)(\.exe|\.whl)' %
469
- 'pip' , install_options = ['--upgrade' , '--no-deps' ])
467
+ 'setuptools' , install_options = ['--upgrade' , '--no-deps' ])
470
468
471
469
# Install 'main packages' first (was before Wheel idea, keep for now)
472
- for happy_few in ['sqlite_bro ' , 'wheel' , 'pywin32' , 'six' , 'numpy' , 'spyder' ,
473
- 'scipy' , 'matplotlib' , 'pandas' ]:
470
+ for happy_few in ['pip ' , 'wheel' , 'pywin32' , 'six' , 'numpy' , 'spyder' ,
471
+ 'scipy' , 'matplotlib' , 'pandas' ]:
474
472
# can be a wheel now
475
473
self .install_package (
476
474
'%s-([0-9\.]*[a-z\+]*[0-9]?)(.*)(\.exe|\.whl)' % happy_few )
@@ -1155,8 +1153,8 @@ def make_all(build_number, release_level, pyver,
1155
1153
# DO create only what version at a time
1156
1154
# You may have to manually delete previous build\winpython-.. directory
1157
1155
1158
- make_all (2 , '' , pyver = '3.4' , rootdir = r'D:\Winpython' ,
1159
- verbose = False , archis = (32 , ))
1156
+ # make_all(2, '', pyver='3.4', rootdir=r'D:\Winpython',
1157
+ # verbose=False, archis=(32, ))
1160
1158
#make_all(2, '', pyver='3.4', rootdir=r'D:\Winpython',
1161
1159
# verbose=False, archis=(64, ), flavor='')
1162
1160
#make_all(7, '', pyver='3.3', rootdir=r'D:\Winpython',
@@ -1175,8 +1173,8 @@ def make_all(build_number, release_level, pyver,
1175
1173
# verbose=False, archis=(32, ), flavor='FlavorKivy')
1176
1174
#make_all(2, '', pyver='3.4', rootdir=r'D:\Winpython',
1177
1175
# verbose=False, archis=(32, ), flavor='FlavorRfull')
1178
- # make_all(2, '', pyver='3.4', rootdir=r'D:\Winpython',
1179
- # verbose=False, archis=(64, ), flavor='FlavorRfull')
1176
+ make_all (2 , '' , pyver = '3.4' , rootdir = r'D:\Winpython' ,
1177
+ verbose = False , archis = (64 , ), flavor = 'FlavorRfull' )
1180
1178
#make_all(2, '', pyver='3.4', rootdir=r'D:\Winpython',
1181
1179
# verbose=False, archis=(32, ), flavor='FlavorJulia')
1182
1180
#make_all(3, '', pyver='2.7', rootdir=r'D:\Winpython',
0 commit comments