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
1 change: 1 addition & 0 deletions generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@
"common.sql": {
"deps": [
"apache-airflow>=2.9.0",
"methodtools>=0.4.7",
"more-itertools>=9.0.0",
"sqlparse>=0.5.1"
],
Expand Down
1 change: 1 addition & 0 deletions providers/common/sql/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ PIP package Version required
``apache-airflow`` ``>=2.9.0``
``sqlparse`` ``>=0.5.1``
``more-itertools`` ``>=9.0.0``
``methodtools`` ``>=0.4.7``
================== ==================

Cross provider package dependencies
Expand Down
3 changes: 3 additions & 0 deletions providers/common/sql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ dependencies = [
"apache-airflow>=2.9.0",
"sqlparse>=0.5.1",
"more-itertools>=9.0.0",
# The methodtools dependency is necessary since the introduction of dialects:
# https://github.com/apache/airflow/pull/41327/files
"methodtools>=0.4.7"
]

# The optional dependencies should be modified in place in the generated file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,12 @@ def get_provider_info():
"sensors": [
{"integration-name": "Common SQL", "python-modules": ["airflow.providers.common.sql.sensors.sql"]}
],
"dependencies": ["apache-airflow>=2.9.0", "sqlparse>=0.5.1", "more-itertools>=9.0.0"],
"dependencies": [
"apache-airflow>=2.9.0",
"sqlparse>=0.5.1",
"more-itertools>=9.0.0",
"methodtools>=0.4.7",
],
"optional-dependencies": {
"pandas": ["pandas>=2.1.2,<2.2"],
"openlineage": ["apache-airflow-providers-openlineage"],
Expand Down
Loading