Skip to content
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

Support for Airflow 3 #118

Open
BasPH opened this issue Dec 23, 2024 · 0 comments
Open

Support for Airflow 3 #118

BasPH opened this issue Dec 23, 2024 · 0 comments

Comments

@BasPH
Copy link

BasPH commented Dec 23, 2024

Airflow 3 is still some time out, but Starship is currently limited to Airflow 2 only:

if int(major) == 2:
if int(minor) == 10:
return StarshipAirflow210()
if int(minor) == 9:
return StarshipAirflow29()
if int(minor) == 8:
return StarshipAirflow28()
if int(minor) == 7:
return StarshipAirflow27()
if int(minor) == 2:
return StarshipAirflow22()
if int(minor) == 1:
return StarshipAirflow21()
if int(minor) == 0:
return StarshipAirflow20()
return StarshipAirflow()
else:
raise RuntimeError(f"Unsupported Airflow Version: {airflow_version}")

Running Starship on Airflow 3 raises this exception:

RuntimeError: Unsupported Airflow Version: 3.0.0.dev0

Created this issue as a roadmap item.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant