Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Limit celery by excluding 5.3.2 and 5.3.3 #34031

Merged
merged 1 commit into from Sep 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion airflow/providers/celery/provider.yaml
Expand Up @@ -46,7 +46,8 @@ dependencies:
# Uses Celery for CeleryExecutor, and we also know that Kubernetes Python client follows SemVer
# (https://docs.celeryq.dev/en/stable/contributing.html?highlight=semver#versions).
# Make sure that the limit here is synchronized with [celery] extra in the airflow core
- celery>=5.3.0,<6
# The 5.3.3/5.3.2 limit comes from https://github.com/celery/celery/issues/8470
- celery>=5.3.0,<6,!=5.3.3,!=5.3.2
- flower>=1.0.0
- google-re2>=1.0

Expand Down
2 changes: 1 addition & 1 deletion generated/provider_dependencies.json
Expand Up @@ -239,7 +239,7 @@
"celery": {
"deps": [
"apache-airflow>=2.4.0",
"celery>=5.3.0,<6",
"celery>=5.3.0,<6,!=5.3.3,!=5.3.2",
"flower>=1.0.0",
"google-re2>=1.0"
],
Expand Down