Skip to content

Commit

Permalink
Fix missing 'packaging' requirement
Browse files Browse the repository at this point in the history
The `sqlalchemy` instrumentation uses the `packaging` library to parse
the `sqlalchemy` SemVer.

`packaging` is not part of the standard library and should be included
in the `setup.cfg` file to avoid:

```
ModuleNotFoundError: No module named 'packaging'
```
  • Loading branch information
mattoberle committed Oct 4, 2021
1 parent 3b5071b commit 4d0903b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.24b0
opentelemetry-instrumentation == 0.24b0
packaging >= 21.0
wrapt >= 1.11.2

[options.extras_require]
Expand Down

0 comments on commit 4d0903b

Please sign in to comment.