This is an automated email from the ASF dual-hosted git repository.
joshfell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 09b6ab9081 Fix typo in dependency approach chapter of README (#36196)
09b6ab9081 is described below
commit 09b6ab908144d62ecbce0d05f14dc4640975ffff
Author: cabbagepatchman <[email protected]>
AuthorDate: Tue Dec 12 20:22:01 2023 -0700
Fix typo in dependency approach chapter of README (#36196)
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index f68615dcd1..6cfa322313 100644
--- a/README.md
+++ b/README.md
@@ -395,7 +395,7 @@ The important dependencies are:
are very likely to introduce breaking changes across those so limiting it
to MAJOR version makes sense
* `werkzeug`: the library is known to cause problems in new versions. It is
tightly coupled with Flask
libraries, and we should update them together
-* `celery`: Celery is crucial component of Airflow as it used for
CeleryExecutor (and similar). Celery
+* `celery`: Celery is a crucial component of Airflow as it used for
CeleryExecutor (and similar). Celery
[follows
SemVer](https://docs.celeryq.dev/en/stable/contributing.html?highlight=semver#versions),
so
we should upper-bound it to the next MAJOR version. Also, when we bump the
upper version of the library,
we should make sure Celery Provider minimum Airflow version is updated.