Skip to content

Commit

Permalink
FIX: files.get_archived_rio_path_ returns the result of `path.get_a…
Browse files Browse the repository at this point in the history
…rchived_rio_path` instead of incorrect one.
  • Loading branch information
remi-braun committed Oct 20, 2023
1 parent 5dd54e3 commit fcad04b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- FIX: Allow to write with any driver in `rasters(_rio).write`
- FIX: Create proper variables for environment variables in `snap`
- FIX: Normalize geometries before testing within `ci`
- FIX: `files.get_archived_rio_path_` returns the result of `path.get_archived_rio_path` instead of incorrect one.
- CI: Update pre-commit hooks

## 1.30.0 (2023-10-04)
Expand Down
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ dependencies: # everything under this, installed by conda
- python=3.9
- pip
- pip: # everything under this, installed by pip
- --extra-index-url ${WINDOWS_WHEELS} # Use windows wheels on windows
- -r requirements.txt
2 changes: 1 addition & 1 deletion sertit/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def get_archived_rio_path(
logs.deprecation_warning(
"This function is deprecated. Import it from 'sertit.path' instead of 'sertit.files'"
)
return path.get_archived_path(archive_path, file_regex, as_list)
return path.get_archived_rio_path(archive_path, file_regex, as_list)


def read_archived_file(archive_path: AnyPathStrType, regex: str) -> bytes:
Expand Down

0 comments on commit fcad04b

Please sign in to comment.