Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a78954b

Browse files
authored
Merge pull request #395 from stonebig/master
forcing update pip always ends badly
2 parents b448680 + 6f422b7 commit a78954b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

make.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ def make(self, remove_existing=True, requirements=None, my_winpydir=None): #, f
10221022
print("WARNING: this is just a simulation!", file=sys.stderr)
10231023

10241024
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)')
10261026
self.python_name = osp.basename(self.python_fname)[:-4]
10271027
distname = 'win%s' % self.python_name
10281028
vlst = re.match(r'winpython-([0-9\.]*)', distname
@@ -1071,9 +1071,9 @@ def make(self, remove_existing=True, requirements=None, my_winpydir=None): #, f
10711071

10721072
# pre-patch current pip (until default python has pip 8.0.3)
10731073
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
10751075
for req in ('pip', 'setuptools'):
1076-
actions = ["install","--upgrade", "--force-reinstall", req]
1076+
actions = ["install","--upgrade", req]
10771077
if self.install_options is not None:
10781078
actions += self.install_options
10791079
print("piping %s" % ' '.join(actions))

0 commit comments

Comments
 (0)