- small fix so the cx_freeze 6.2 module will work in building a frozen version of FlatCAM

This commit is contained in:
Marius Stanciu 2020-08-09 04:57:29 +03:00 committed by Marius
parent 9b6c65cdcb
commit b9faa7b2b8
2 changed files with 5 additions and 1 deletions

View File

@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta
=================================================
9.08.2020
- small fix so the cx_freeze 6.2 module will work in building a frozen version of FlatCAM
7.08.2020
- all Geometry objects resulted from Isolation Tool are now of type multi-geo

View File

@ -78,7 +78,7 @@ if sys.platform == "win32":
if platform.architecture()[0] == '64bit':
buildOptions = dict(
include_files=include_files,
excludes=['scipy', 'pytz'],
excludes=['scipy', 'pytz', "matplotlib.tests", "numpy.random._examples"],
# 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