diff options
author | Vaggelis Papoutsellis <22398586+epapoutsellis@users.noreply.github.com> | 2018-11-30 13:14:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-30 13:14:25 +0000 |
commit | f9a2b70e31614f70cc733bb4aa0c3c05d92dbc47 (patch) | |
tree | ca9bfbf0166630b9c73acb01cb872a628324ade8 | |
parent | 78a23cff0f17ed7edfcef1bee1048e9df11a8be5 (diff) | |
parent | 76faad7f6e5a64697b609b63fd4f5b74d595fdbd (diff) | |
download | astra-wrapper-f9a2b70e31614f70cc733bb4aa0c3c05d92dbc47.tar.gz astra-wrapper-f9a2b70e31614f70cc733bb4aa0c3c05d92dbc47.tar.bz2 astra-wrapper-f9a2b70e31614f70cc733bb4aa0c3c05d92dbc47.tar.xz astra-wrapper-f9a2b70e31614f70cc733bb4aa0c3c05d92dbc47.zip |
Merge pull request #12 from vais-ral/fix_demos
correct cil version
-rwxr-xr-x | Wrappers/Python/setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Wrappers/Python/setup.py b/Wrappers/Python/setup.py index 233f237..85dde19 100755 --- a/Wrappers/Python/setup.py +++ b/Wrappers/Python/setup.py @@ -22,10 +22,12 @@ from distutils.core import setup import os import sys -cil_version=os.environ['CIL_VERSION'] -if cil_version == '': - print("Please set the environmental variable CIL_VERSION") - sys.exit(1) +cil_version='0.12.0' + +#cil_version=os.environ['CIL_VERSION'] +#if cil_version == '': +# print("Please set the environmental variable CIL_VERSION") +# sys.exit(1) setup( name="ccpi-astra", |