Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion providers/apache/hdfs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ dependencies = [
"apache-airflow>=2.10.0",
'hdfs[avro,dataframe,kerberos]>=2.5.4;python_version<"3.12"',
'hdfs[avro,dataframe,kerberos]>=2.7.3;python_version>="3.12"',
"pandas>=2.1.2,<2.2",
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
]

[dependency-groups]
Expand Down
7 changes: 2 additions & 5 deletions providers/common/sql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,8 @@ dependencies = [
# Any change in the dependencies is preserved when the file is regenerated
[project.optional-dependencies]
"pandas" = [
# In pandas 2.2 minimal version of the sqlalchemy is 2.0
# https://pandas.pydata.org/docs/whatsnew/v2.2.0.html#increased-minimum-versions-for-dependencies
# However Airflow not fully supports it yet: https://github.com/apache/airflow/issues/28723
# In addition FAB also limit sqlalchemy to < 2.0
"pandas>=2.1.2,<2.2",
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
]
"openlineage" = [
"apache-airflow-providers-openlineage"
Expand Down
3 changes: 2 additions & 1 deletion providers/databricks/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ dependencies = [
"databricks-sqlalchemy>=1.0.2",
"aiohttp>=3.9.2, <4",
"mergedeep>=1.3.4",
"pandas>=2.1.2,<2.2",
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
"pyarrow>=14.0.1",
]

Expand Down
7 changes: 2 additions & 5 deletions providers/exasol/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,8 @@ dependencies = [
"apache-airflow>=2.10.0",
"apache-airflow-providers-common-sql>=1.26.0",
"pyexasol>=0.26.0",
# In pandas 2.2 minimal version of the sqlalchemy is 2.0
# https://pandas.pydata.org/docs/whatsnew/v2.2.0.html#increased-minimum-versions-for-dependencies
# However Airflow not fully supports it yet: https://github.com/apache/airflow/issues/28723
# In addition FAB also limit sqlalchemy to < 2.0
"pandas>=2.1.2,<2.2",
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
]

[dependency-groups]
Expand Down
3 changes: 2 additions & 1 deletion providers/papermill/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ dependencies = [
"papermill[all]>=2.6.0",
"scrapbook[all]>=0.5.0",
"ipykernel>=6.29.4",
"pandas>=2.1.2,<2.2",
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
"nbconvert>=7.16.1",
]

Expand Down
7 changes: 2 additions & 5 deletions providers/salesforce/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,8 @@ requires-python = "~=3.9"
dependencies = [
"apache-airflow>=2.10.0",
"simple-salesforce>=1.0.0",
# In pandas 2.2 minimal version of the sqlalchemy is 2.0
# https://pandas.pydata.org/docs/whatsnew/v2.2.0.html#increased-minimum-versions-for-dependencies
# However Airflow not fully supports it yet: https://github.com/apache/airflow/issues/28723
# In addition FAB also limit sqlalchemy to < 2.0
"pandas>=2.1.2,<2.2",
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
]

[dependency-groups]
Expand Down
7 changes: 2 additions & 5 deletions providers/snowflake/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,8 @@ dependencies = [
"apache-airflow>=2.10.0",
"apache-airflow-providers-common-compat>=1.6.0",
"apache-airflow-providers-common-sql>=1.21.0",
# In pandas 2.2 minimal version of the sqlalchemy is 2.0
# https://pandas.pydata.org/docs/whatsnew/v2.2.0.html#increased-minimum-versions-for-dependencies
# However Airflow not fully supports it yet: https://github.com/apache/airflow/issues/28723
# In addition FAB also limit sqlalchemy to < 2.0
"pandas>=2.1.2,<2.2",
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
"pyarrow>=14.0.1",
"snowflake-connector-python>=3.7.1",
"snowflake-sqlalchemy>=1.4.0",
Expand Down
7 changes: 2 additions & 5 deletions providers/weaviate/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,8 @@ dependencies = [
"apache-airflow>=2.10.0",
"httpx>=0.25.0",
"weaviate-client>=4.4.0",
# In pandas 2.2 minimal version of the sqlalchemy is 2.0
# https://pandas.pydata.org/docs/whatsnew/v2.2.0.html#increased-minimum-versions-for-dependencies
# However Airflow not fully supports it yet: https://github.com/apache/airflow/issues/28723
# In addition FAB also limit sqlalchemy to < 2.0
"pandas>=2.1.2,<2.2",
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
]

[dependency-groups]
Expand Down