This is an automated email from the ASF dual-hosted git repository.
amoghdesai 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 b80a0ffd6ad Disallowing kylinpy 2.7.0 as it contains invalid pypi
metadata (#48226)
b80a0ffd6ad is described below
commit b80a0ffd6adb4172377d1539ee235c68c791e8cb
Author: Amogh Desai <[email protected]>
AuthorDate: Tue Mar 25 12:35:21 2025 +0530
Disallowing kylinpy 2.7.0 as it contains invalid pypi metadata (#48226)
---
generated/provider_dependencies.json | 2 +-
providers/apache/kylin/README.rst | 2 +-
providers/apache/kylin/pyproject.toml | 2 +-
.../kylin/src/airflow/providers/apache/kylin/get_provider_info.py | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/generated/provider_dependencies.json
b/generated/provider_dependencies.json
index 004201c55c6..3f2d5128355 100644
--- a/generated/provider_dependencies.json
+++ b/generated/provider_dependencies.json
@@ -235,7 +235,7 @@
"apache.kylin": {
"deps": [
"apache-airflow>=2.9.0",
- "kylinpy>=2.7.0"
+ "kylinpy>2.7.0"
],
"devel-deps": [],
"plugins": [],
diff --git a/providers/apache/kylin/README.rst
b/providers/apache/kylin/README.rst
index 28722ad57a5..3376e4527f1 100644
--- a/providers/apache/kylin/README.rst
+++ b/providers/apache/kylin/README.rst
@@ -54,7 +54,7 @@ Requirements
PIP package Version required
================== ==================
``apache-airflow`` ``>=2.9.0``
-``kylinpy`` ``>=2.7.0``
+``kylinpy`` ``>2.7.0``
================== ==================
The changelog for the provider package can be found in the
diff --git a/providers/apache/kylin/pyproject.toml
b/providers/apache/kylin/pyproject.toml
index 39bad5a949e..7fcfb76f217 100644
--- a/providers/apache/kylin/pyproject.toml
+++ b/providers/apache/kylin/pyproject.toml
@@ -58,7 +58,7 @@ requires-python = "~=3.9"
# After you modify the dependencies, and rebuild your Breeze CI image with
``breeze ci-image build``
dependencies = [
"apache-airflow>=2.9.0",
- "kylinpy>=2.7.0",
+ "kylinpy>2.7.0",
]
[dependency-groups]
diff --git
a/providers/apache/kylin/src/airflow/providers/apache/kylin/get_provider_info.py
b/providers/apache/kylin/src/airflow/providers/apache/kylin/get_provider_info.py
index 6a2b21a833d..e1e26d7f041 100644
---
a/providers/apache/kylin/src/airflow/providers/apache/kylin/get_provider_info.py
+++
b/providers/apache/kylin/src/airflow/providers/apache/kylin/get_provider_info.py
@@ -76,6 +76,6 @@ def get_provider_info():
"connection-type": "kylin",
}
],
- "dependencies": ["apache-airflow>=2.9.0", "kylinpy>=2.7.0"],
+ "dependencies": ["apache-airflow>=2.9.0", "kylinpy>2.7.0"],
"devel-dependencies": [],
}