Skip to content

Commit

Permalink
Version upgrade and a couple of temporary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
atulya-astronomer committed Nov 6, 2024
1 parent fd44077 commit 020fabf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion astronomer_starship/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.0.6"
__version__ = "2.1.0"


def get_provider_info():
Expand Down
3 changes: 2 additions & 1 deletion astronomer_starship/compat/starship_compatability.py
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ def task_instance_attrs(self):
attrs["custom_operator_name"] = {
"attr": "custom_operator_name",
"methods": [("POST", True)],
"test_value": "@task",
"test_value": None,
}
return attrs

Expand Down Expand Up @@ -1080,6 +1080,7 @@ def task_instance_attrs(self):
"methods": [("POST", False)],
"test_value": "task_display_name",
}
return attrs


class StarshipAirflow210(StarshipAirflow28):
Expand Down
4 changes: 3 additions & 1 deletion tests/validation_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
]

IMAGES = [
"apache/airflow:slim-2.10.3",
"apache/airflow:slim-2.9.3",
"apache/airflow:slim-2.8.1",
"apache/airflow:slim-2.7.3",
"apache/airflow:slim-2.6.0",
Expand Down Expand Up @@ -75,7 +77,7 @@ def run_in_container(
volumes: list,
environment: dict,
platform: str,
) -> (int, bytes):
) -> tuple[int, bytes]:
from docker.models.containers import Container

container: Container = docker_client.containers.run(
Expand Down

0 comments on commit 020fabf

Please sign in to comment.