Skip to content

Commit

Permalink
Issue #170 temporarily pin down openeo<0.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Jan 31, 2025
1 parent c06f71f commit 8dacad1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
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",
"openeo>=0.36.0,<0.38.0", # TODO #170 temporary pin waiting for actual 0.38.0 release
"openeo_driver>=0.123.0.dev",
"flask~=2.0",
"gunicorn~=20.0",
Expand Down
2 changes: 2 additions & 0 deletions src/openeo_aggregator/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
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,
Expand Down
2 changes: 2 additions & 0 deletions src/openeo_aggregator/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
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
Expand Down
2 changes: 2 additions & 0 deletions src/openeo_aggregator/partitionedjobs/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +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.util import TimingLogger
Expand Down

0 comments on commit 8dacad1

Please sign in to comment.