@@ -1022,7 +1022,7 @@ def make(self, remove_existing=True, requirements=None, my_winpydir=None): #, f
1022
1022
print ("WARNING: this is just a simulation!" , file = sys .stderr )
1023
1023
1024
1024
self .python_fname = self .get_package_fname (
1025
- r'python-([0-9\.rc ]*)((\.|\-)amd64)?\.(msi|zip)' )
1025
+ r'python-([0-9\.rcb ]*)((\.|\-)amd64)?\.(msi|zip)' )
1026
1026
self .python_name = osp .basename (self .python_fname )[:- 4 ]
1027
1027
distname = 'win%s' % self .python_name
1028
1028
vlst = re .match (r'winpython-([0-9\.]*)' , distname
@@ -1071,9 +1071,9 @@ def make(self, remove_existing=True, requirements=None, my_winpydir=None): #, f
1071
1071
1072
1072
# pre-patch current pip (until default python has pip 8.0.3)
1073
1073
self .distribution .patch_standard_packages ('pip' )
1074
- # force update of pip (FIRST) and setuptools here
1074
+ # not forced update of pip (FIRST) and setuptools here
1075
1075
for req in ('pip' , 'setuptools' ):
1076
- actions = ["install" ,"--upgrade" , "--force-reinstall" , req ]
1076
+ actions = ["install" ,"--upgrade" , req ]
1077
1077
if self .install_options is not None :
1078
1078
actions += self .install_options
1079
1079
print ("piping %s" % ' ' .join (actions ))
0 commit comments