Skip to content

Commit c102a2c

Browse files
committed
"distribute" has now been replaced by "setuptools" as default alternative package manager
1 parent f460e41 commit c102a2c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

make.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def _install_required_packages(self):
419419
print("Installing required packages")
420420
self.install_package('pywin32-([0-9\.]*[a-z]*).%s-py%s.exe'
421421
% (self.py_arch, self.python_version))
422-
self.install_package('distribute-([0-9\.]*[a-z]*[0-9]?).%s(-py%s)?.exe'
422+
self.install_package('setuptools-([0-9\.]*[a-z]*[0-9]?).%s(-py%s)?.exe'
423423
% (self.py_arch, self.python_version))
424424
self.install_package('winpython-([0-9\.]*[a-z]*[0-9]?).%s(-py%s)?.exe'
425425
% (self.py_arch, self.python_version))
@@ -578,7 +578,8 @@ def make(self, remove_existing=True):
578578
self.python_fullversion = '.'.join(vlst[:3])
579579

580580
# Create the WinPython base directory
581-
self._print("Creating WinPython base directory")
581+
self._print("Creating WinPython %s base directory"\
582+
% self.python_version)
582583
self.winpydir = osp.join(self.target, distname)
583584
if osp.isdir(self.winpydir) and remove_existing \
584585
and not self.simulation:

0 commit comments

Comments
 (0)