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
10 changes: 6 additions & 4 deletions providers/presto/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,17 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
Requirements
------------

======================================= =====================================
======================================= ======================================
PIP package Version required
======================================= =====================================
======================================= ======================================
``apache-airflow`` ``>=2.10.0``
``apache-airflow-providers-common-sql`` ``>=1.26.0``
``presto-python-client`` ``>=0.8.4``
``pandas[postgresql]`` ``>=2.1.2; python_version < "3.13"``
``pandas`` ``>=2.1.2; python_version < "3.13"``
``pandas`` ``>=2.2.3; python_version >= "3.13"``
======================================= =====================================
``psycopg2-binary`` ``>=2.9.9; python_version < "3.13"``
``psycopg2-binary`` ``>=2.9.10; python_version >= "3.13"``
======================================= ======================================

Cross provider package dependencies
-----------------------------------
Expand Down
10 changes: 6 additions & 4 deletions providers/presto/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,17 @@ Requirements

The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``.

======================================= =====================================
======================================= ======================================
PIP package Version required
======================================= =====================================
======================================= ======================================
``apache-airflow`` ``>=2.10.0``
``apache-airflow-providers-common-sql`` ``>=1.26.0``
``presto-python-client`` ``>=0.8.4``
``pandas[postgresql]`` ``>=2.1.2; python_version < "3.13"``
``pandas`` ``>=2.1.2; python_version < "3.13"``
``pandas`` ``>=2.2.3; python_version >= "3.13"``
======================================= =====================================
``psycopg2-binary`` ``>=2.9.9; python_version < "3.13"``
``psycopg2-binary`` ``>=2.9.10; python_version >= "3.13"``
======================================= ======================================

Cross provider package dependencies
-----------------------------------
Expand Down
4 changes: 3 additions & 1 deletion providers/presto/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ dependencies = [
"apache-airflow-providers-common-compat>=1.8.0",
"apache-airflow-providers-common-sql>=1.26.0",
"presto-python-client>=0.8.4",
'pandas[postgresql]>=2.1.2; python_version <"3.13"',
'pandas>=2.1.2; python_version <"3.13"',
'pandas>=2.2.3; python_version >="3.13"',
'psycopg2-binary>=2.9.9; python_version < "3.13"',
'psycopg2-binary>=2.9.10; python_version >= "3.13"',
]

# The optional dependencies should be modified in place in the generated file
Expand Down