From d577052d2f12dcda1261b379ae58deb3a0d91cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20C=2E=20Riven=C3=A6s?= Date: Wed, 10 Feb 2021 07:23:29 +0100 Subject: [PATCH] BLD: get correct path to script --- scripts/setup_utilities.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/setup_utilities.py b/scripts/setup_utilities.py index 3a1bd74a7..01885eb71 100644 --- a/scripts/setup_utilities.py +++ b/scripts/setup_utilities.py @@ -179,10 +179,11 @@ def swigok(): tmpfile.write("SWIG") elif "Linux" in platform.system(): - print("Installing swig from source (tmp) ...") + print("Installing swig from source (tmp workaround) ...") + print("It is strongly recommended that SWIG>=3 is installed permanent!") subprocess.check_call( # nosec ["bash", "swig_install.sh"], - cwd="requirements", + cwd="scripts", ) else: raise SystemExit("Cannot find valid swig install")