From b509f7146477f0538b8967ecf4dd02aa49bfca87 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Sun, 20 Sep 2020 13:42:05 +0300 Subject: [PATCH] Use another script command --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6086a36..2e8081e 100644 --- a/setup.py +++ b/setup.py @@ -156,7 +156,7 @@ class BuildCMakeExt(build_ext): cython_code = os.path.join(str(build_dir.absolute()),'mycython') with open(cython_code, mode="wt") as ff: - ff.write(f"#!{sys.executable}\n" + ff.write(f"#!/usr/bin/env sh -c '${PYTHON}'\n" "from Cython.Compiler.Main import setuptools_main\n" "setuptools_main()") os.chmod(cython_code, stat.S_IXUSR|stat.S_IWUSR|stat.S_IRUSR|stat.S_IRGRP)