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
commit 17822910938d4a9bcb7f9db43aee52c0182445a5 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.*. (cherry picked from commit e6a18e3bbd88407473c0fe30f39185a040c73316) --- 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 f90e12da60..da49ee29fd 100644 --- a/airflow/providers/apache/pinot/provider.yaml +++ b/airflow/providers/apache/pinot/provider.yaml @@ -48,7 +48,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 fb1791ded8..b9eefc68a6 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 9d27af96a2..acb3237d88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -617,7 +617,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",
