Skip to content

Commit

Permalink
Bump lower-limit for pinotdb (#37690)
Browse files Browse the repository at this point in the history
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.*.
  • Loading branch information
potiuk authored Feb 25, 2024
1 parent 29b3a30 commit e6a18e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airflow/providers/apache/pinot/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e6a18e3

Please sign in to comment.