Skip to content

Commit 4d19ee3

Browse files
author
stonebig
committed
workaround a pip bug
1 parent 23f976a commit 4d19ee3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ def make(self, remove_existing=True, requirements=None): #, find_links=None):
800800

801801
# force update of pip (FIRST) and setuptools here
802802
for req in ('pip', 'setuptools'):
803-
actions = ["install","--upgrade", req]
803+
actions = ["install","--upgrade", "--force-reinstall", req]
804804
if self.install_options is not None:
805805
actions += self.install_options
806806
print("piping %s" % ' '.join(actions))

0 commit comments

Comments
 (0)