Skip to content
Commits on Source (5)
Metadata-Version: 1.2
Name: PDAL
Version: 2.2.0
Version: 2.2.1
Summary: Point cloud data processing
Home-page: http://pdal.io
Author: Howard Butler
......
2.2.0
\ No newline at end of file
2.2.1
\ No newline at end of file
python-pdal (2.2.1+ds-1) unstable; urgency=medium
* New upstream release.
* Drop clean-target.patch, applied upstream.
-- Bas Couwenberg <sebastic@debian.org> Sat, 07 Sep 2019 16:02:27 +0200
python-pdal (2.2.0+ds-1) unstable; urgency=medium
* New upstream release.
......
Description: Fix clean target.
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: https://github.com/PDAL/python/pull/32
Applied-Upstream: https://github.com/PDAL/python/commit/66870b6ff39ca268ea6c2410cba1c8e188f58bfe
--- a/setup.py
+++ b/setup.py
@@ -156,7 +156,7 @@ if DEBUG:
if os.name != 'nt':
extra_compile_args += ['-g','-O0']
-if PDALVERSION < Version('2.0.0'):
+if PDALVERSION is not None and PDALVERSION < Version('2.0.0'):
raise Exception("PDAL version '%s' is not compatible with PDAL Python library version '%s'"%(PDALVERSION, module_version))
__version__='2.2.0'
__version__='2.2.1'
from .pipeline import Pipeline
from .array import Array
......
......@@ -156,7 +156,7 @@ if DEBUG:
if os.name != 'nt':
extra_compile_args += ['-g','-O0']
if PDALVERSION < Version('2.0.0'):
if PDALVERSION is not None and PDALVERSION < Version('2.0.0'):
raise Exception("PDAL version '%s' is not compatible with PDAL Python library version '%s'"%(PDALVERSION, module_version))
......