mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 21:23:55 +08:00
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:
@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.5.0-0.24b0...HEAD)
|
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.5.0-0.24b0...HEAD)
|
||||||
|
- `opentelemetry-sdk-extension-aws` Release AWS Python SDK Extension as 1.0.0
|
||||||
|
([#667](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/667))
|
||||||
|
- `opentelemetry-instrumentation-sqlalchemy` Added `packaging` dependency
|
||||||
|
([#713](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/713))
|
||||||
|
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- `opentelemetry-instrumentation-elasticsearch` Added `response_hook` and `request_hook` callbacks
|
- `opentelemetry-instrumentation-elasticsearch` Added `response_hook` and `request_hook` callbacks
|
||||||
|
@ -41,6 +41,7 @@ install_requires =
|
|||||||
opentelemetry-api ~= 1.3
|
opentelemetry-api ~= 1.3
|
||||||
opentelemetry-semantic-conventions == 0.24b0
|
opentelemetry-semantic-conventions == 0.24b0
|
||||||
opentelemetry-instrumentation == 0.24b0
|
opentelemetry-instrumentation == 0.24b0
|
||||||
|
packaging >= 21.0
|
||||||
wrapt >= 1.11.2
|
wrapt >= 1.11.2
|
||||||
|
|
||||||
[options.extras_require]
|
[options.extras_require]
|
||||||
|
Reference in New Issue
Block a user