- updated the make_freezed.py file to make sure that all the required files are included

- updated the setup_ubuntu.sh to include the sudo command (courtesy of Krishna Torque on bitbucket)
This commit is contained in:
Marius Stanciu
2019-11-17 15:58:58 +02:00
committed by Marius
parent d327160ab9
commit b41ecd87f8
4 changed files with 13 additions and 39 deletions

View File

@@ -74,8 +74,7 @@ if platform.architecture()[0] == '64bit':
excludes=['scipy','pytz'],
# packages=['OpenGL','numpy','vispy','ortools','google']
# packages=['numpy','google', 'rasterio'] # works for Python 3.7
packages = ['opengl', 'numpy', 'google', 'rasterio'] # works for Python 3.6.5 and Python 3.7.1
packages=['opengl', 'numpy', 'google', 'rasterio'], # works for Python 3.6.5 and Python 3.7.1
)
else:
buildOptions = dict(
@@ -83,10 +82,12 @@ else:
excludes=['scipy', 'pytz'],
# packages=['OpenGL','numpy','vispy','ortools','google']
# packages=['numpy', 'rasterio'] # works for Python 3.7
packages = ['opengl', 'numpy', 'rasterio'] # works for Python 3.6.5 and Python 3.7.1
packages=['opengl', 'numpy', 'rasterio'], # works for Python 3.6.5 and Python 3.7.1
)
if sys.platform == "win32":
buildOptions["include_msvcr"] = True
print("INCLUDE_FILES", include_files)