This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 40c2555fa4f DagBag re-added to exclusion list for task-sdk imports
(#57304)
40c2555fa4f is described below
commit 40c2555fa4ffc25f29327fde8324f889b59e55e8
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Oct 26 15:41:04 2025 +0100
DagBag re-added to exclusion list for task-sdk imports (#57304)
The dagbag.py file is still not refactored in v3-1-test so in
the v3-1-test branch it should still be excluded from task-sdk
import checks.
---
.pre-commit-config.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index d4bf93ebfb0..84c49d635a2 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1312,6 +1312,7 @@ repos:
^airflow-core/src/airflow/models/callback\.py$|
^airflow-core/src/airflow/models/connection\.py$|
^airflow-core/src/airflow/models/dag\.py$|
+ ^airflow-core/src/airflow/models/dagbag.py$|
^airflow-core/src/airflow/models/dagrun\.py$|
^airflow-core/src/airflow/models/deadline\.py$|
^airflow-core/src/airflow/models/expandinput\.py$|