Skip to content

Commit b8b1929

Browse files
authored
Merge pull request #24 from sebastic/clean-target
Don't append library in clean target.
2 parents c5a7d50 + 083c93a commit b8b1929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def get_pdal_config(option):
157157
extra_compile_args += ['-g','-O0']
158158

159159
# readers.numpy doesn't exist until PDAL 1.8
160-
if PDALVERSION >= Version('1.8'):
160+
if PDALVERSION is not None and PDALVERSION >= Version('1.8'):
161161
libraries.append('pdal_plugin_reader_numpy')
162162

163163
if os.name in ['nt']:

0 commit comments

Comments
 (0)