Fix missing 'packaging' requirement (#713)

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'
```

Co-authored-by: Matt Oberle <mattoberle@users.noreply.github.com>
Co-authored-by: Owais Lone <owais@users.noreply.github.com>
This commit is contained in:
Matt Oberle
2021-10-06 15:56:55 -04:00
committed by GitHub
parent fb24599324
commit 2bcb6ae66b
2 changed files with 6 additions and 0 deletions

View File

@ -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]