This is an automated email from the ASF dual-hosted git repository.
ephraimanierobi pushed a commit to branch v2-8-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-8-test by this push:
new 21d83eb2ce Exclude common-io provider just for test
21d83eb2ce is described below
commit 21d83eb2ce68b759990b407a6551259924343ea2
Author: Ephraim Anierobi <[email protected]>
AuthorDate: Mon Nov 27 13:08:24 2023 +0100
Exclude common-io provider just for test
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index bc624e21fa..9255b0fdb8 100644
--- a/setup.py
+++ b/setup.py
@@ -870,7 +870,7 @@ def get_provider_package_name_from_package_id(package_id:
str) -> str:
def get_excluded_providers() -> list[str]:
"""Return packages excluded for the current python version."""
- return []
+ return ["apache-airflow-providers-common-io"]
def get_all_provider_packages() -> str: