Skip to content

Commit c0e46f9

Browse files
committed
fix concatenation of Cython install options
1 parent efa5026 commit c0e46f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/lib-graalpython/modules/ginstall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def six(*args):
6060
install_from_pypi("six==1.12.0", args)
6161

6262
def Cython(*args):
63-
install_from_pypi("Cython==0.29.2", ['--no-cython-compile'] + args)
63+
install_from_pypi("Cython==0.29.2", ('--no-cython-compile',) + args)
6464

6565
def setuptools(*args):
6666
install_from_pypi("setuptools==40.6.3", args)

0 commit comments

Comments
 (0)