flatcam/sandbox/diagnose.py
Marius Stanciu a4bbb98bf1 - converted from Python2 code to Python3 code
- in camlib.py, CNCJob class -> generate_from_excellon_by_tool() was
failing in the line to sort the tools due of been unable to compare
between dict's. I replaced that section.
2018-05-26 04:43:40 +03:00

34 lines
572 B
Python

#import sys
import platform
print(("Platform", platform.system(), platform.release()))
print(("Distro", platform.dist()))
print(("Python", platform.python_version()))
import rtree
print(("rtree", rtree.__version__))
import shapely
import shapely.geos
print(("shapely", shapely.__version__))
print(("GEOS library", shapely.geos.geos_version))
from PyQt4 import Qt
print(("Qt", Qt.qVersion()))
import numpy
print(("Numpy", numpy.__version__))
import matplotlib
print(("MatPlotLib", matplotlib.__version__))
print(("MPL Numpy", matplotlib.__version__numpy__))