Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.2.4 02 Dec 2025

- Fix LasZipper's handling of big files

# 0.2.3 30 May 2023

- Fix LasUnZipper::decompress and LasZipper::compress when the number
Expand Down Expand Up @@ -27,4 +31,5 @@
- Added LasZipper
- Added LasZipDll
- Added bindings to laszip_header
- Added bindings to laszip_point
- Added bindings to laszip_point

16 changes: 5 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
[build-system]
requires = [
"scikit-build-core>=0.9",
"pybind11>=2.10",
]
requires = ["scikit-build-core>=0.9", "pybind11>=2.10"]
build-backend = "scikit_build_core.build"

[project]
name = "laszip"
version = "0.2.3"
version = "0.2.4"
description = "Bindings for LASzip made with pybind11"
readme = "Readme.md"
authors = [
{ name = "Thomas Montaigu", email = "thomas.montaigu@laposte.net" }
]
license = {file = "License.txt"}
requires-python = ">= 3.7"
authors = [{ name = "Thomas Montaigu", email = "thomas.montaigu@laposte.net" }]
license = { file = "License.txt" }
requires-python = ">= 3.9"

[project.urls]
repository = "https://github.com/tmontaigu/laszip-python"