Skip to content

Commit

Permalink
Fixes dependencies, v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Feb 23, 2024
1 parent 9c084b6 commit 738e752
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- ...

## [v0.0.4] - 2024-02-23

- Adds missing dependencies

## [v0.0.3] - 2024-02-23

- Use extension schemas for conversion
Expand All @@ -42,6 +46,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- First release

[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/v0.0.2...main>
[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/v0.0.4...main>
[v0.0.4]: <https://github.com/radiantearth/stac-spec/compare/v0.0.3...v0.0.4>
[v0.0.3]: <https://github.com/radiantearth/stac-spec/compare/v0.0.2...v0.0.3>
[v0.0.2]: <https://github.com/radiantearth/stac-spec/compare/v0.0.1...v0.0.2>
[v0.0.1]: <https://github.com/radiantearth/stac-spec/tree/v0.0.1>
2 changes: 1 addition & 1 deletion fiboa_cli/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def validate_data(file, config):
log(f"Data could not be read: {e}", "error")
return False

log("Rading the file succeeded, but detailed data validation is not implemented yet", "warning")
log("Reading the file succeeded, but detailed data validation is not implemented yet", "warning")


# todo: use stac_validator instead of our own validation routine
Expand Down
2 changes: 1 addition & 1 deletion fiboa_cli/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.3"
__version__ = "0.0.4"
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ def get_description():
author="Matthias Mohr",
url="https://github.com/fiboa/cli",
install_requires=[
"jsonschema>=4.4",
"pyyaml>=5.1",
"pyarrow>=7.0",
"fsspec>=2022.3",
"jsonschema>=4.20",
"pyyaml>=6.0",
"pyarrow>=14.0",
"fsspec>=2024.0",
"click>=8.1",
"geopandas>=0.14.1"
"geopandas>=0.14",
"requests>=2.30",
"aiohttp>=3.9"
],
packages=find_packages(),
package_data={
Expand Down

0 comments on commit 738e752

Please sign in to comment.