CauldronDevelopmentLLC / CAMotics

Open-Source Simulation & Computer Aided Machining - A 3-axis CNC GCode simulator
Other
611 stars 142 forks source link

SCons build fails on scons 4.1.0 #344

Closed dpreed closed 3 years ago

dpreed commented 3 years ago

Using the current scons, the config/qt5/init.py file has an error in line 50

./config/qt5/__init__.py:class ToolQt5Warning(SCons.Warnings.Warning): pass fails because Warning is not defined anymore. Instead it has been renamed to SConsWarning, so that line should be edited to ./config/qt5/__init__.py:class ToolQt5Warning(SCons.Warnings.SConsWarning): pass

Then the build succeeds.

jcoffland commented 3 years ago

I belive the above commit fixes this problem. Reopen if not.