From 8034383a5136b329d9e01e7ede77af84f5d9cf5d Mon Sep 17 00:00:00 2001 From: tmontaigu Date: Tue, 2 Dec 2025 23:05:29 +0100 Subject: [PATCH] Release 0.2.4 --- Changelog.md | 7 ++++++- pyproject.toml | 16 +++++----------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/Changelog.md b/Changelog.md index ad3b246..fdb17c5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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 @@ -27,4 +31,5 @@ - Added LasZipper - Added LasZipDll - Added bindings to laszip_header -- Added bindings to laszip_point \ No newline at end of file +- Added bindings to laszip_point + diff --git a/pyproject.toml b/pyproject.toml index 3da3002..dccaefa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" -