Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PT-5799 Drop detection-trees-heights-spacept #688

Merged
merged 4 commits into from
Dec 4, 2024
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,14 @@ You can check your current version with the following command:
```

For more information, see [UP42 Python package description](https://pypi.org/project/up42-py/).
## 2.1.1a12

**Dec 3, 2024**
- Drop process template `DetectionTreesHeightsSpacept`.

## 2.1.1a11

**Dec, 2, 2024**
**Dec 2, 2024**
- Added requesting `openid` scope when retrieving token.
- Switched workspace id retrieval from the deprecated endpoint to the user info endpoint.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "up42-py"
version = "2.1.1a11"
version = "2.1.1a12"
description = "Python SDK for UP42, the geospatial marketplace and developer platform."
authors = ["UP42 GmbH <[email protected]>"]
license = "https://github.com/up42/up42-py/blob/master/LICENSE"
Expand Down
1 change: 0 additions & 1 deletion tests/test_processing_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class TestParameterlessTemplates:
[
templates.DetectionBuildingsSpacept,
templates.DetectionTreesSpacept,
templates.DetectionTreesHeightsSpacept,
javidq marked this conversation as resolved.
Show resolved Hide resolved
templates.DetectionShadowsSpacept,
templates.DetectionShipsAirbus,
templates.DetectionStorageTanksAirbus,
Expand Down
5 changes: 0 additions & 5 deletions up42/processing_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ class DetectionTreesSpacept(WorkspaceIdSingleItemTemplate):
process_id = "detection-trees-spacept"


@dataclasses.dataclass
class DetectionTreesHeightsSpacept(WorkspaceIdSingleItemTemplate):
process_id = "detection-trees-heights-spacept"


@dataclasses.dataclass
class DetectionShadowsSpacept(WorkspaceIdSingleItemTemplate):
process_id = "detection-shadows-spacept"
Expand Down