-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Bump litellm from 1.83.7 to 1.84.0 in /examples/airlift-mwaa-example/dags in the pip group across 1 directory #33995
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| apache-airflow>=2.0.0,<2.8 | ||
| apache-airflow>=3.3.0,<3.4 | ||
| flask-session<0.6.0 | ||
| connexion<3.0.0 | ||
| pendulum>=2.0.0,<3.0.0 | ||
|
Comment on lines
+1
to
4
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Apache Airflow 3.x requires |
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ dependencies = [ | |
| "dagster-dbt", | ||
| "dbt-duckdb", | ||
| "pandas", | ||
| "apache-airflow<3.0.0", | ||
| "apache-airflow<4.0.0", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The previous Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| apache-airflow>=2.0.0,<2.8 | ||
| apache-airflow>=3.3.0,<3.4 | ||
| flask-session<0.6.0 | ||
| connexion<3.0.0 | ||
| pendulum>=2.0.0,<3.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The MWAA service currently supports Apache Airflow up to version 3.2.1. Pinning
apache-airflow>=3.3.0,<3.4in the MWAA integration files means no MWAA environment can satisfy this requirement, so integration tests that provision or target a real MWAA environment will fail at environment-creation time. The same constraint applies toairflow_project/requirements.txt. Consider aligning with the highest MWAA-available version (>=3.2.0,<3.3or similar) until MWAA adds 3.3.x support.