This is an automated email from the ASF dual-hosted git repository.
kaxilnaik 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 eed59f1e96f Exclude `src/airflow/__init__.py` when building providers
(#44066)
eed59f1e96f is described below
commit eed59f1e96f590edcc95327b2874dd95bb8137ca
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri Nov 15 17:52:32 2024 +0000
Exclude `src/airflow/__init__.py` when building providers (#44066)
same as Task SDK change in https://github.com/apache/airflow/pull/43899 --
but for providers
---
providers/pyproject.toml | 1 +
1 file changed, 1 insertion(+)
diff --git a/providers/pyproject.toml b/providers/pyproject.toml
index cdda548684a..51886fb3fbc 100644
--- a/providers/pyproject.toml
+++ b/providers/pyproject.toml
@@ -39,6 +39,7 @@ exclude = [
".latest-doc-only-change.txt",
"CHANGELOG.rst",
"MANAGING_PROVIDERS_LIFECYCLE.rst",
+ "src/airflow/__init__.py" # This file only exists to make pyright/VSCode
happy, don't ship it
]
[tool.ruff]