We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2056460 commit 66870b6Copy full SHA for 66870b6
setup.py
@@ -156,7 +156,7 @@ def get_pdal_config(option):
156
if os.name != 'nt':
157
extra_compile_args += ['-g','-O0']
158
159
-if PDALVERSION < Version('2.0.0'):
+if PDALVERSION is not None and PDALVERSION < Version('2.0.0'):
160
raise Exception("PDAL version '%s' is not compatible with PDAL Python library version '%s'"%(PDALVERSION, module_version))
161
162
0 commit comments