From 43b04aa08f21948203487e8a16b80cfe75eeaf92 Mon Sep 17 00:00:00 2001 From: Ken Finnigan Date: Tue, 14 Nov 2023 16:29:33 -0500 Subject: [PATCH] fix: Limit importlib-metadata version in python 3.7 --- 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'", ], )