Skip to content

Commit

Permalink
V.0.31.0 (#454)
Browse files Browse the repository at this point in the history
* V.0.31.0
  • Loading branch information
andher1802 authored Aug 9, 2023
1 parent 06f98bf commit 0ac11c8
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ For more information, see [UP42 Python package description](https://pypi.org/pro
- Added substatuses to `order.track_status`.
- Limited `catalog.search(sort_by)` to `acquisition_date` only.
- Removed `get_credits_history` from the main class.
- `asset.stac_info` returns now `pystac.Collection` object.
- Python 3.7 is no longer supported.

## 0.30.1
Expand Down
2 changes: 0 additions & 2 deletions docs/reference/asset-reference.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Asset

::: up42.asset.Asset
selection:
members: {{ funcs_asset }}
4 changes: 0 additions & 4 deletions docs/reference/webhooks-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,3 @@
::: up42.webhooks.Webhooks
selection:
members: {{ funcs_webhooks }}

::: up42.webhooks.Webhook
selection:
members: {{ funcs_webhook }}
2 changes: 1 addition & 1 deletion up42/_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.30.1
0.31.0
4 changes: 1 addition & 3 deletions up42/asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ def stac_info(self) -> Optional[pystac.Collection]:

@property
def stac_items(self) -> pystac.ItemCollection:
""" "
returns the stac items from an UP42 asset STAC representation.
"""
"""Returns the stac items from an UP42 asset STAC representation."""
try:
_, pystac_asset_search = self._stac_search
resulting_items = pystac_asset_search.item_collection()
Expand Down

0 comments on commit 0ac11c8

Please sign in to comment.