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 cb2e091565d [v3-1-test] Exclude unnecessary ui build artifacts from
wheel (#61335) (#61397)
cb2e091565d is described below
commit cb2e091565d66b07e02bce072f52b2c4506ea265
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Feb 18 21:31:59 2026 +0100
[v3-1-test] Exclude unnecessary ui build artifacts from wheel (#61335)
(#61397)
(cherry picked from commit 8edb3130e8b47db23684f72f438b22ac02844144)
Signed-off-by: Guan-Ming (Wesley) Chiu
<[email protected]>
Co-authored-by: Guan-Ming (Wesley) Chiu
<[email protected]>
---
airflow-core/pyproject.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/airflow-core/pyproject.toml b/airflow-core/pyproject.toml
index 65e764ce12f..8d5bd3006bb 100644
--- a/airflow-core/pyproject.toml
+++ b/airflow-core/pyproject.toml
@@ -248,9 +248,9 @@ artifacts = [
"src/airflow/git_version"
]
exclude = [
- "src/airflow/ui/node_modules/",
- "src/airflow/api_fastapi/auth/managers/simple/ui/node_modules",
- "src/airflow/ui/openapi.merged.json",
+ # Only dist/ (declared as artifacts) is needed
+ "src/airflow/ui/**",
+ "src/airflow/api_fastapi/auth/managers/simple/ui/**",
]
[dependency-groups]