elaunira-airflow 3.1.8__tar.gz → 3.1.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elaunira-airflow
3
- Version: 3.1.8
3
+ Version: 3.1.9
4
4
  Summary: Elaunira Airflow operators and hooks for R2Index
5
5
  Project-URL: Repository, https://github.com/elaunira/elaunira-airflow
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "elaunira-airflow"
7
- version = "3.1.8"
7
+ version = "3.1.9"
8
8
  description = "Elaunira Airflow operators and hooks for R2Index"
9
9
  requires-python = ">=3.12"
10
10
  license = "MIT"
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
 
5
5
  from typing import TYPE_CHECKING, Any, Callable, TypeVar
6
6
 
7
- from airflow.decorators.base import task_decorator_factory
7
+ from airflow.sdk.bases.decorator import task_decorator_factory
8
8
 
9
9
  from elaunira.airflow.operators.r2index import (
10
10
  DownloadItem,
@@ -14,7 +14,7 @@ from elaunira.airflow.operators.r2index import (
14
14
  )
15
15
 
16
16
  if TYPE_CHECKING:
17
- from airflow.decorators.base import TaskDecorator
17
+ from airflow.sdk.bases.decorator import TaskDecorator
18
18
 
19
19
  F = TypeVar("F", bound=Callable[..., Any])
20
20