diff --git a/providers/common/sql/pyproject.toml b/providers/common/sql/pyproject.toml index d55b6c47282c4..b3b9569734494 100644 --- a/providers/common/sql/pyproject.toml +++ b/providers/common/sql/pyproject.toml @@ -69,7 +69,9 @@ dependencies = [ # Any change in the dependencies is preserved when the file is regenerated [project.optional-dependencies] "pandas" = [ - 'pandas>=2.1.2; python_version <"3.13"', + 'pandas[sql-other]>=2.1.2; python_version <"3.13"', + # Technically - we should add "sql-other" here as well, but this will only be possible when we move + # to sqlalchemy 2+ TODO(potiuk): do so. 'pandas>=2.2.3; python_version >="3.13"', ] "openlineage" = [ diff --git a/providers/presto/pyproject.toml b/providers/presto/pyproject.toml index 3abdbf8204778..269c57b127c99 100644 --- a/providers/presto/pyproject.toml +++ b/providers/presto/pyproject.toml @@ -60,7 +60,7 @@ dependencies = [ "apache-airflow>=2.10.0", "apache-airflow-providers-common-sql>=1.26.0", "presto-python-client>=0.8.4", - 'pandas>=2.1.2; python_version <"3.13"', + 'pandas[postgres]>=2.1.2; python_version <"3.13"', 'pandas>=2.2.3; python_version >="3.13"', ]