Skip to content

Commit

Permalink
v1.44.1.dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-braun committed Dec 9, 2024
1 parent 9b8eca0 commit 8f98c4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.44.1 (2024-mm-dd)
## 1.44.1.dev0 (2024-mm-dd)

- OPTIM: Don't download an archive stored on the cloud when trying to read a vector stored inside it in `vectors.read`
- OPTIM: Don't download files stored on cloud when applying `ci.assert_files_equal` on them
Expand Down
2 changes: 1 addition & 1 deletion sertit/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""
Sertit Utils library
"""
__version__ = "1.44.0"
__version__ = "1.44.1.dev0"
__title__ = "sertit"
__description__ = ("SERTIT python library for generic tools",)
__author__ = "ICube-SERTIT"
Expand Down
1 change: 1 addition & 0 deletions sertit/vectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@ def ogr2geojson(
# Convert to strings to make it work with CLI
vector_path = AnyPath(vector_path)

# archived vector_path are extracted in a tmp folder so no need to be downloaded
if vector_path.suffix == ".zip":
with zipfile.ZipFile(vector_path, "r") as zip_ds:
vect_path = zip_ds.extract(arch_vect_path, out_dir)
Expand Down

0 comments on commit 8f98c4c

Please sign in to comment.