From b4255add2d78c5a237da5f9d1c55d37fe0fff66e Mon Sep 17 00:00:00 2001 From: Tobias Wochinger Date: Wed, 24 Jul 2024 19:02:02 +0200 Subject: [PATCH] build: unpin structlog --- pyproject.toml | 2 +- test/test_logging.py | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 92febacad7..70afe8dd92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -112,7 +112,7 @@ extra-dependencies = [ "ddtrace", # Structured logging - "structlog<=24.2.0", + "structlog", # Looking for missing imports "isort", diff --git a/test/test_logging.py b/test/test_logging.py index 40925a7c62..2663b79e9e 100644 --- a/test/test_logging.py +++ b/test/test_logging.py @@ -319,15 +319,11 @@ def function_that_raises_and_adds_to_stack_trace(): "filename": str(Path.cwd() / "test" / "test_logging.py"), "lineno": ANY, # otherwise the test breaks if you add a line :-) "name": "test_logging_exceptions_json", - "line": "", - "locals": None, }, { "filename": str(Path.cwd() / "test" / "test_logging.py"), "lineno": ANY, # otherwise the test breaks if you add a line :-) "name": "function_that_raises_and_adds_to_stack_trace", - "line": "", - "locals": None, }, ], }