Skip to content

Commit

Permalink
Celery: Add support for new major version 5.x (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamantike authored Dec 22, 2020
1 parent f6f5b90 commit f9ea61c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python-contrib/compare/v0.16b1...HEAD)

### Added
- `opentelemetry-instrumentation-celery` Add support for Celery version 5.x
([#266](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/266))
- `opentelemetry-instrumentation-urllib` Add urllib instrumentation
([#222](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/222))
- `opentelemetry-exporter-datadog` Add fields method
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ package_dir=
=src
packages=find_namespace:
install_requires =
celery >= 4.0, < 6.0
opentelemetry-api == 0.17.dev0
opentelemetry-instrumentation == 0.17.dev0
celery ~= 4.0

[options.extras_require]
test =
pytest
celery ~= 4.0
celery >= 4.0, < 6.0
opentelemetry-test == 0.17.dev0

[options.packages.find]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ deps =
aiopg >= 0.13.0
sqlalchemy ~= 1.3.16
redis ~= 3.3.11
celery ~= 4.0, != 4.4.4
celery[pytest] >= 4.0, < 6.0
protobuf>=3.13.0
requests==2.25.0
changedir =
Expand Down

0 comments on commit f9ea61c

Please sign in to comment.