Skip to content

Commit

Permalink
fix: Limit importlib-metadata version in python 3.7 (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenfinnigan authored Nov 15, 2023
1 parent 1f58cae commit acaf16b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'",
],
)

0 comments on commit acaf16b

Please sign in to comment.