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: 1 addition & 2 deletions providers/google/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,7 @@ PIP package Version required
``pandas`` ``>=2.1.2; python_version < "3.13"``
``pandas`` ``>=2.2.3; python_version >= "3.13"``
``proto-plus`` ``>=1.26.0``
``pyarrow`` ``>=16.1.0; python_version < "3.13"``
``pyarrow`` ``>=18.0.0; python_version >= "3.13"``
``pyarrow`` ``>=18.0.0``
``python-slugify`` ``>=7.0.0``
``PyOpenSSL`` ``>=23.0.0``
``sqlalchemy-bigquery`` ``>=1.2.1``
Expand Down
7 changes: 2 additions & 5 deletions providers/google/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,7 @@ dependencies = [
'pandas>=2.2.3; python_version >="3.13"',
"proto-plus>=1.26.0",
# Used to write parquet files by BaseSqlToGCSOperator
# TODO: remove it when apache-beam allows pyarrow 18+
"pyarrow>=16.1.0; python_version < '3.13'",
"pyarrow>=18.0.0; python_version >= '3.13'",
"pyarrow>=18.0.0",
"python-slugify>=7.0.0",
"PyOpenSSL>=23.0.0",
"sqlalchemy-bigquery>=1.2.1",
Expand All @@ -149,8 +147,7 @@ dependencies = [
# Any change in the dependencies is preserved when the file is regenerated
[project.optional-dependencies]
"apache.beam" = [
'apache-beam[gcp]>=2.53.0; python_version < "3.12"',
'apache-beam[gcp]>=2.57.0; python_version >= "3.12"',
"apache-airflow-providers-apache-beam>=6.2.2",
]
"cncf.kubernetes" = [
"apache-airflow-providers-cncf-kubernetes>=10.1.0",
Expand Down
Loading