We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f487fa0 commit d9de738Copy full SHA for d9de738
graalpython/lib-graalpython/modules/ginstall.py
@@ -64,6 +64,11 @@ def Cython(extra_opts=[], **kwargs):
64
install_from_pypi("Cython==0.29.2", extra_opts=(['--no-cython-compile'] + extra_opts), **kwargs)
65
66
def setuptools(**kwargs):
67
+ try:
68
+ import six as _six
69
+ except ImportError:
70
+ print("Installing required dependency: six")
71
+ six(**kwargs)
72
install_from_pypi("setuptools==41.0.1", **kwargs)
73
74
def pkgconfig(**kwargs):
0 commit comments