This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-8-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 01bebc0074041f82432ba347faf385879ec5b95d Author: Jarek Potiuk <[email protected]> AuthorDate: Mon Feb 12 10:49:28 2024 +0100 Add celery and cncf.kubernetes to devel dependencies (#37333) Many of our tests depend on celery or k8s executor being available when running them, so the basic `devel` extra that is installed by default in hatch default environment should install both of them. (cherry picked from commit 632aee7c7857f48371dd54cd4a503bd7053f1426) --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index df9ce1d98c..b86024a011 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -421,8 +421,10 @@ all-dbs = [ "apache-airflow[vertica]", ] devel = [ - "apache-airflow[common.io]", - "apache-airflow[common.sql]", + "apache-airflow[celery]", + "apache-airflow[cncf-kubernetes]", + "apache-airflow[common-io]", + "apache-airflow[common-sql]", "apache-airflow[devel-debuggers]", "apache-airflow[devel-devscripts]", "apache-airflow[devel-duckdb]",
