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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Update fr-converter to support 2021/2022 files
- Converter for Bavaria, Germany LPIS field blocks (de_by_block)
- Converter for Hesse, Germany LPIS reference parcels
- Update vecorel-cli to v0.2.16:
- Converter output is sorted by Hilbert distance
- Commands exit with a non-zero exit code when they report a failure
- Collection-only properties are kept when merging collections
- Default GeoParquet compression is now zstd (level 15), configurable via `--compression_level`

## [v0.21.0] - 2026-02-16

Expand Down
48 changes: 26 additions & 22 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ classifiers = [
]
requires-python = ">=3.11"
dependencies = [
"vecorel-cli==0.2.15",
"vecorel-cli==0.2.16",
"spdx-license-list==3.27.0",
]

Expand Down Expand Up @@ -64,8 +64,8 @@ ruff = "==0.12.8"
build = ">=1.0.0,<2.0.0"

[tool.pixi.feature.cloud.dependencies]
s3fs = "==2025.7.0"
gcsfs = "==2025.7.0"
s3fs = ">=2025.7.0"
gcsfs = ">=2025.7.0"

[tool.pixi.environments]
default = {solve-group = "default"}
Expand Down Expand Up @@ -107,7 +107,7 @@ exclude = [
line-length = 100
indent-width = 4

target-version = "py310"
target-version = "py311"

[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "W", "I", "NPY201"] # "C901"
Expand Down
Loading