Skip to content

Commit

Permalink
Issue #170 update to now released openeo v0.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Feb 12, 2025
1 parent 8dacad1 commit 317d6c7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
install_requires=[
"requests",
"attrs",
"openeo>=0.36.0,<0.38.0", # TODO #170 temporary pin waiting for actual 0.38.0 release
"openeo>=0.38.0",
"openeo_driver>=0.123.0.dev",
"flask~=2.0",
"gunicorn~=20.0",
Expand Down
4 changes: 1 addition & 3 deletions src/openeo_aggregator/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,14 @@
import openeo_driver.errors
import openeo_driver.util.changelog
import openeo_driver.util.view_helpers

# TODO #170: from openeo.utils.version import ComparableVersion
from openeo.capabilities import ComparableVersion
from openeo.rest import (
OpenEoApiError,
OpenEoApiPlainError,
OpenEoClientException,
OpenEoRestError,
)
from openeo.util import TimingLogger, deep_get, dict_no_none
from openeo.utils.version import ComparableVersion
from openeo_driver.backend import (
AbstractCollectionCatalog,
BatchJobMetadata,
Expand Down
4 changes: 1 addition & 3 deletions src/openeo_aggregator/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@
import flask
import requests
from openeo import Connection

# TODO #170: from openeo.utils.version import ComparableVersion
from openeo.capabilities import ComparableVersion
from openeo.rest.auth.auth import BearerAuth, OpenEoApiAuthBase
from openeo.rest.connection import RestApiConnection
from openeo.util import TimingLogger
from openeo.utils.version import ComparableVersion
from openeo_driver.backend import OidcProvider
from openeo_driver.errors import (
AuthenticationRequiredException,
Expand Down
4 changes: 1 addition & 3 deletions src/openeo_aggregator/partitionedjobs/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
from typing import Dict, List, Optional

import flask

# TODO #170 from openeo.rest.models.logs import LogEntry
from openeo.api.logs import LogEntry
from openeo.rest.job import BatchJob, ResultAsset
from openeo.rest.models.logs import LogEntry
from openeo.util import TimingLogger
from openeo_driver.errors import JobNotFinishedException
from openeo_driver.users import User
Expand Down

0 comments on commit 317d6c7

Please sign in to comment.