Skip to content

Commit 0c9e159

Browse files
authored
Fix dependencies of standard provider (#43553)
Standard provider should have virtualenv as dependency set as it has PythonVirtualenvOperator that needs it. Also it should have min airflow version 2.8.0 same as all other providers.
1 parent be4d894 commit 0c9e159

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

generated/provider_dependencies.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,8 @@
12861286
"standard": {
12871287
"deps": [
12881288
"apache-airflow-providers-common-sql>=1.18.0",
1289-
"apache-airflow>=2.10.0"
1289+
"apache-airflow>=2.8.0",
1290+
"virtualenv>=20.26.0"
12901291
],
12911292
"devel-deps": [],
12921293
"plugins": [],

providers/src/airflow/providers/standard/provider.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ versions:
2828
- 1.0.0
2929

3030
dependencies:
31-
- apache-airflow>=2.10.0
31+
- apache-airflow>=2.8.0
3232
- apache-airflow-providers-common-sql>=1.18.0
33+
- virtualenv>=20.26.0
3334

3435
integrations:
3536
- integration-name: Standard

0 commit comments

Comments
 (0)