Skip to content

Commit

Permalink
Fix dependencies of standard provider (#43553)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
potiuk authored Oct 31, 2024
1 parent be4d894 commit 0c9e159
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,8 @@
"standard": {
"deps": [
"apache-airflow-providers-common-sql>=1.18.0",
"apache-airflow>=2.10.0"
"apache-airflow>=2.8.0",
"virtualenv>=20.26.0"
],
"devel-deps": [],
"plugins": [],
Expand Down
3 changes: 2 additions & 1 deletion providers/src/airflow/providers/standard/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ versions:
- 1.0.0

dependencies:
- apache-airflow>=2.10.0
- apache-airflow>=2.8.0
- apache-airflow-providers-common-sql>=1.18.0
- virtualenv>=20.26.0

integrations:
- integration-name: Standard
Expand Down

0 comments on commit 0c9e159

Please sign in to comment.