Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
New upstream version 2.1.4+ds
· 44fddaeb
Bas Couwenberg
authored
Nov 20, 2018
44fddaeb
New upstream version 2.1.5+ds
· 0a6e4439
Bas Couwenberg
authored
Nov 20, 2018
0a6e4439
Merge tag 'upstream/2.1.5+ds'
· 2e32b021
Bas Couwenberg
authored
Nov 20, 2018
Upstream version 2.1.5+ds
2e32b021
New upstream release.
· dca4ce20
Bas Couwenberg
authored
Nov 20, 2018
dca4ce20
Set distribution to unstable.
· cda07480
Bas Couwenberg
authored
Nov 20, 2018
cda07480
Show whitespace changes
Inline
Side-by-side
PKG-INFO
View file @
cda07480
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
...
...
VERSION.txt
View file @
cda07480
2.1.3
\ No newline at end of file
2.1.5
\ No newline at end of file
debian/changelog
View file @
cda07480
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.
...
...
pdal/__init__.py
View file @
cda07480
__version__
=
'
2.1.
3
'
__version__
=
'
2.1.
5
'
from
.pipeline
import
Pipeline
from
.array
import
Array
...
...
setup.py
View file @
cda07480
...
...
@@ -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
'
):
...
...