This is an automated email from the ASF dual-hosted git repository.

potiuk 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 e6a18e3bbd Bump lower-limit for pinotdb (#37690)
e6a18e3bbd is described below

commit e6a18e3bbd88407473c0fe30f39185a040c73316
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Feb 25 17:30:55 2024 +0100

    Bump lower-limit for pinotdb (#37690)
    
    The pintodb python package had a very old and very low lower
    limit, that introduced possible weird resolutions for dependencies
    when pinotdb had been downgraded to **really** low version - this
    has been observed in #37683 when we test replacing pip with uv
    in our CI environment.
    
    Bumping it to version >= 5.1.0 released last year in september - that
    was the first one that was not 0.N.*.
---
 airflow/providers/apache/pinot/provider.yaml | 2 +-
 generated/provider_dependencies.json         | 2 +-
 pyproject.toml                               | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/airflow/providers/apache/pinot/provider.yaml 
b/airflow/providers/apache/pinot/provider.yaml
index 49efcca6d0..8705e49597 100644
--- a/airflow/providers/apache/pinot/provider.yaml
+++ b/airflow/providers/apache/pinot/provider.yaml
@@ -49,7 +49,7 @@ versions:
 dependencies:
   - apache-airflow>=2.6.0
   - apache-airflow-providers-common-sql>=1.3.1
-  - pinotdb>0.4.7
+  - pinotdb>=5.1.0
 
 integrations:
   - integration-name: Apache Pinot
diff --git a/generated/provider_dependencies.json 
b/generated/provider_dependencies.json
index 781fbdd334..50ef20614e 100644
--- a/generated/provider_dependencies.json
+++ b/generated/provider_dependencies.json
@@ -223,7 +223,7 @@
     "deps": [
       "apache-airflow-providers-common-sql>=1.3.1",
       "apache-airflow>=2.6.0",
-      "pinotdb>0.4.7"
+      "pinotdb>=5.1.0"
     ],
     "devel-deps": [],
     "cross-providers-deps": [
diff --git a/pyproject.toml b/pyproject.toml
index 31735126c7..882b65475d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -613,7 +613,7 @@ apache-livy = [ # source: 
airflow/providers/apache/livy/provider.yaml
 apache-pig = [] # source: airflow/providers/apache/pig/provider.yaml
 apache-pinot = [ # source: airflow/providers/apache/pinot/provider.yaml
   "apache-airflow[common_sql]",
-  "pinotdb>0.4.7",
+  "pinotdb>=5.1.0",
 ]
 apache-spark = [ # source: airflow/providers/apache/spark/provider.yaml
   "grpcio-status>=1.59.0",

Reply via email to