Skip to content

Commit

Permalink
Minor openeo-python-driver compatibility update
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed May 29, 2024
1 parent 586598d commit 129d4f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"requests",
"attrs",
"openeo>=0.27.0",
"openeo_driver>=0.99.0.dev",
"openeo_driver>=0.101.0.dev",
"flask~=2.0",
"gunicorn~=20.0",
"python-json-logger>=2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/openeo_aggregator/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from typing import Optional

__version__ = "0.34.1a1"
__version__ = "0.34.2a1"


def log_version_info(logger: Optional[logging.Logger] = None):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def test_basic_auth(self, api100_with_entitlement_check, caplog):
403, "PermissionsInsufficient", message="An EGI account is required for using openEO Platform."
)
warnings = "\n".join(r.getMessage() for r in caplog.records if r.levelno == logging.WARNING)
assert re.search(r"internal_auth_data.*authentication_method.*basic", warnings)
assert re.search(r"internal_auth_data.*authentication_method.*Basic", warnings)

def test_oidc_no_entitlement_data(self, api100_with_entitlement_check, requests_mock, caplog):
def get_userinfo(request: requests.Request, context):
Expand Down

0 comments on commit 129d4f2

Please sign in to comment.