Skip to content
This repository has been archived by the owner on Aug 18, 2022. It is now read-only.

Commit

Permalink
0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontaigu committed Mar 9, 2020
1 parent 817ab19 commit ecb52b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pylas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.0"
__version__ = "0.4.1"

from . import errors, vlrs
from .headers import HeaderFactory
Expand Down
2 changes: 1 addition & 1 deletion pylas/lasdatas/las14.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def write_to(self, out_stream, do_compress=False):
# LAS 1.4 may have evlrs located after the point data, and the header has a field
# that must give the offset to first evlr
# so in the case of writing compressed points we have to update the header
# written with seek + write
# written afterwards with seek + write
start = out_stream.tell()
if not do_compress:
if len(self.evlrs) > 0:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="pylas",
version="0.4.0",
version="0.4.1",
description="Las/Laz reading and writing in python",
long_description=readme,
url="https://github.com/tmontaigu/pylas",
Expand Down

0 comments on commit ecb52b3

Please sign in to comment.