Skip to content

Commit 3460e34

Browse files
committed
ensure "six" is installed before other packages
solves the "seaborn" compatibility issue
1 parent 72f741c commit 3460e34

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

make.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,8 @@ def _install_required_packages(self):
446446
self.install_package('pip-([0-9\.]*[a-z]*[0-9]?).%s(-py%s)?.exe'
447447
% (self.py_arch, self.python_version))
448448
self.install_package('wheel-([0-9\.]*[a-z]*[0-9]?).tar.gz')
449+
# six is needed early
450+
self.install_package('six-([0-9\.]*[a-z]*[0-9]?)-py2.py3-none-any.whl')
449451

450452
self.install_package(
451453
'spyder(lib)?-([0-9\.]*[a-z]*[0-9]?).%s(-py%s)?.exe'

0 commit comments

Comments
 (0)