Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
New upstream version 2.1.1+ds
· d6ebb840
Bas Couwenberg
authored
Nov 15, 2018
d6ebb840
New upstream version 2.1.2+ds
· 3dbd5b66
Bas Couwenberg
authored
Nov 15, 2018
3dbd5b66
New upstream version 2.1.3+ds
· 83cb2c74
Bas Couwenberg
authored
Nov 15, 2018
83cb2c74
Show whitespace changes
Inline
Side-by-side
PKG-INFO
View file @
83cb2c74
Metadata-Version: 1.2
Name: PDAL
Version: 2.1.
0
Version: 2.1.
3
Summary: Point cloud data processing
Home-page: http://pdal.io
Author: Howard Butler
...
...
VERSION.txt
View file @
83cb2c74
2.1.0
\ No newline at end of file
2.1.3
\ No newline at end of file
pdal/__init__.py
View file @
83cb2c74
__version__
=
'
2.1.
0
'
__version__
=
'
2.1.
3
'
from
.pipeline
import
Pipeline
from
.array
import
Array
...
...
setup.py
View file @
83cb2c74
...
...
@@ -148,9 +148,6 @@ if pdal_config and "clean" not in sys.argv:
include_dirs
.
append
(
numpy
.
get_include
())
if
os
.
name
!=
'
nt
'
:
extra_compile_args
=
[
'
-std=c++11
'
,
'
-Wno-unknown-pragmas
'
]
if
platform
.
system
()
==
'
Darwin
'
:
extra_link_args
.
append
(
'
-Wl,-rpath,
'
+
library_dirs
[
0
])
...
...
@@ -167,6 +164,11 @@ if os.name in ['nt']:
libraries
.
append
(
'
pdal_plugin_reader_numpy
'
)
extra_compile_args
=
[
'
/DNOMINMAX
'
,]
if
'
linux
'
in
sys
.
platform
or
'
linux2
'
in
sys
.
platform
:
if
'
GCC
'
in
sys
.
version
:
# 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
'
]
# readers.numpy doesn't exist until PDAL 1.8
if
PDALVERSION
>=
Version
(
'
1.8
'
):
...
...