From acaf16b09a9ce66738d89712b8109106ace5e36d Mon Sep 17 00:00:00 2001 From: Ken Finnigan Date: Wed, 15 Nov 2023 11:25:28 -0500 Subject: [PATCH] fix: Limit importlib-metadata version in python 3.7 (#569) --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index b5765472..01ec0515 100644 --- a/setup.py +++ b/setup.py @@ -39,5 +39,7 @@ "opentelemetry-instrumentation-django==0.41b0", # v4.7.1 is the last version that supports python 3.7 "typing_extensions==4.7.1; python_version<'3.8'", + # v6.7.0 is the last version that supports python 3.7 + "importlib-metadata==6.7.0; python_version<'3.8'", ], )