Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
New upstream version 2.1.7+ds
· 807228a1
Bas Couwenberg
authored
Nov 22, 2018
807228a1
New upstream version 2.1.8+ds
· 9e738e52
Bas Couwenberg
authored
Nov 22, 2018
9e738e52
Merge tag 'upstream/2.1.8+ds'
· 1b31e8df
Bas Couwenberg
authored
Nov 22, 2018
Upstream version 2.1.8+ds
1b31e8df
New upstream release.
· b419ddee
Bas Couwenberg
authored
Nov 22, 2018
b419ddee
Set distribution to unstable.
· 67e1ed21
Bas Couwenberg
authored
Nov 22, 2018
67e1ed21
Show whitespace changes
Inline
Side-by-side
PKG-INFO
View file @
67e1ed21
Metadata-Version: 1.2
Name: PDAL
Version: 2.1.
6
Version: 2.1.
8
Summary: Point cloud data processing
Home-page: http://pdal.io
Author: Howard Butler
...
...
VERSION.txt
View file @
67e1ed21
2.1.6
\ No newline at end of file
2.1.8
\ No newline at end of file
debian/changelog
View file @
67e1ed21
python-pdal (2.1.8+ds-1) unstable; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Thu, 22 Nov 2018 07:02:34 +0100
python-pdal (2.1.6+ds-1) unstable; urgency=medium
* New upstream release.
...
...
pdal/__init__.py
View file @
67e1ed21
__version__
=
'
2.1.
6
'
__version__
=
'
2.1.
8
'
from
.pipeline
import
Pipeline
from
.array
import
Array
...
...
setup.py
View file @
67e1ed21
...
...
@@ -173,13 +173,12 @@ if os.name in ['nt']:
extra_compile_args
=
[
'
/DNOMINMAX
'
,]
if
'
linux
'
in
sys
.
platform
or
'
linux2
'
in
sys
.
platform
:
if
'
linux
'
in
sys
.
platform
or
'
linux2
'
in
sys
.
platform
or
'
darwin
'
in
sys
.
platform
:
extra_compile_args
+=
[
'
-std=c++11
'
,
'
-Wno-unknown-pragmas
'
]
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
'
]
elif
'
darwin
'
in
sys
.
platform
:
extra_compile_args
+=
[
'
-std=c++11
'
,
'
-Wno-unknown-pragmas
'
]
...
...