diff --git a/setup.py b/setup.py index 09d542a..dac8b6d 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/src/openeo_aggregator/about.py b/src/openeo_aggregator/about.py index 250e4f8..3e4276f 100644 --- a/src/openeo_aggregator/about.py +++ b/src/openeo_aggregator/about.py @@ -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): diff --git a/tests/test_views.py b/tests/test_views.py index 708d560..a5236fc 100644 --- a/tests/test_views.py +++ b/tests/test_views.py @@ -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):