Skip to content
Commits on Source (5)
Metadata-Version: 1.2
Name: PDAL
Version: 2.1.3
Version: 2.1.5
Summary: Point cloud data processing
Home-page: http://pdal.io
Author: Howard Butler
......
2.1.3
\ No newline at end of file
2.1.5
\ No newline at end of file
python-pdal (2.1.5+ds-1) unstable; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Tue, 20 Nov 2018 17:24:28 +0100
python-pdal (2.1.3+ds-1) unstable; urgency=medium
* New upstream release.
......
__version__='2.1.3'
__version__='2.1.5'
from .pipeline import Pipeline
from .array import Array
......
......@@ -169,6 +169,8 @@ if 'linux' in sys.platform or 'linux2' in sys.platform:
# try to ensure the ABI for Conda GCC 4.8
if '4.8' in sys.version:
extra_compile_args += ['-D_GLIBCXX_USE_CXX11_ABI=0']
elif 'darwin' in sys.platform:
extra_compile_args += ['-std=c++11', '-Wno-unknown-pragmas']
# readers.numpy doesn't exist until PDAL 1.8
if PDALVERSION >= Version('1.8'):
......