apache-airflow-providers-standard 1.9.0rc2__tar.gz → 1.9.1rc1__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.
Potentially problematic release.
This version of apache-airflow-providers-standard might be problematic. Click here for more details.
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/PKG-INFO +32 -11
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/README.rst +28 -8
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/changelog.rst +17 -0
- apache_airflow_providers_standard-1.9.1rc1/docs/index.rst +122 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/operators/bash.rst +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/provider.yaml +2 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/pyproject.toml +5 -3
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/__init__.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/bash.py +7 -13
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/branch_external_python.py +2 -8
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/branch_python.py +2 -7
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/branch_virtualenv.py +2 -7
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/external_python.py +2 -7
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/python.py +2 -7
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/python_virtualenv.py +2 -9
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/sensor.py +2 -9
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/short_circuit.py +2 -8
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/stub.py +6 -12
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_bash_decorator.py +1 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_branch_operator.py +1 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_branch_operator_decorator.py +1 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_external_task_parent_deferrable.py +2 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_hitl_operator.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_sensors.py +1 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_short_circuit_decorator.py +1 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_short_circuit_operator.py +1 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/hooks/filesystem.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/hooks/package_index.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/hooks/subprocess.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/bash.py +3 -12
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/branch.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/datetime.py +2 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/empty.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/hitl.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/latest_only.py +1 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/python.py +3 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/smooth.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/trigger_dagrun.py +9 -19
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/weekday.py +2 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/bash.py +2 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/date_time.py +2 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/external_task.py +2 -7
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/filesystem.py +1 -1
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/python.py +2 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/time.py +1 -6
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/time_delta.py +3 -7
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/weekday.py +2 -7
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/triggers/temporal.py +1 -5
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/utils/skipmixin.py +1 -7
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/version_compat.py +3 -21
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_trigger_dagrun.py +14 -6
- apache_airflow_providers_standard-1.9.0rc2/docs/index.rst +0 -93
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/commits.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/conf.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/configurations-ref.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/installing-providers-from-sources.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/operators/datetime.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/operators/index.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/operators/latest_only.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/operators/python.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/operators/trigger_dag_run.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/security.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/sensors/bash.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/sensors/datetime.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/sensors/external_task_sensor.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/sensors/file.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/sensors/index.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/docs/sensors/python.rst +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/LICENSE +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/decorators/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_bash_operator.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_branch_datetime_operator.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_branch_day_of_week_operator.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_external_task_child_deferrable.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_external_task_marker_dag.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_latest_only.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_python_decorator.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_python_operator.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_sensor_decorator.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/example_trigger_controller_dag.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/sql/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/example_dags/sql/sample.sql +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/exceptions.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/get_provider_info.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/hooks/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/models/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/operators/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/sensors/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/triggers/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/triggers/external_task.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/triggers/file.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/triggers/hitl.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/utils/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/utils/python_virtualenv.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/utils/python_virtualenv_script.jinja2 +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/utils/sensor_helper.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/src/airflow/providers/standard/utils/weekday.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/conftest.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_bash.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_branch_external_python.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_branch_python.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_branch_virtualenv.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_external_python.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_python.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_python_virtualenv.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_sensor.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_short_circuit.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/decorators/test_stub.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/hooks/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/hooks/test_filesystem.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/hooks/test_package_index.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/hooks/test_subprocess.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_bash.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_branch_operator.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_datetime.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_hitl.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_latest_only_operator.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_python.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_smooth.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/operators/test_weekday.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/test_bash.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/test_date_time.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/test_external_task_sensor.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/test_filesystem.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/test_python.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/test_time.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/test_time_delta.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/sensors/test_weekday.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/test_exceptions.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/triggers/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/triggers/test_external_task.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/triggers/test_file.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/triggers/test_hitl.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/triggers/test_temporal.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/utils/__init__.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/utils/test_python_virtualenv.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/utils/test_sensor_helper.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/utils/test_skipmixin.py +0 -0
- {apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/tests/unit/standard/utils/test_weekday.py +0 -0
{apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-standard
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.1rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-standard for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,standard,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -21,9 +21,10 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
23
|
Requires-Dist: apache-airflow>=2.10.0rc1
|
|
24
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.8.0rc1
|
|
24
25
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
25
|
-
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-standard/1.9.
|
|
26
|
-
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-standard/1.9.
|
|
26
|
+
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-standard/1.9.1/changelog.html
|
|
27
|
+
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-standard/1.9.1
|
|
27
28
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
28
29
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
29
30
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -54,7 +55,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
54
55
|
|
|
55
56
|
Package ``apache-airflow-providers-standard``
|
|
56
57
|
|
|
57
|
-
Release: ``1.9.
|
|
58
|
+
Release: ``1.9.1``
|
|
58
59
|
|
|
59
60
|
|
|
60
61
|
Airflow Standard Provider
|
|
@@ -67,7 +68,7 @@ This is a provider package for ``standard`` provider. All classes for this provi
|
|
|
67
68
|
are in ``airflow.providers.standard`` python package.
|
|
68
69
|
|
|
69
70
|
You can find package information and changelog for the provider
|
|
70
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-standard/1.9.
|
|
71
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-standard/1.9.1/>`_.
|
|
71
72
|
|
|
72
73
|
Installation
|
|
73
74
|
------------
|
|
@@ -81,12 +82,32 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
|
81
82
|
Requirements
|
|
82
83
|
------------
|
|
83
84
|
|
|
84
|
-
|
|
85
|
-
PIP package
|
|
86
|
-
|
|
87
|
-
``apache-airflow``
|
|
88
|
-
|
|
85
|
+
========================================== ==================
|
|
86
|
+
PIP package Version required
|
|
87
|
+
========================================== ==================
|
|
88
|
+
``apache-airflow`` ``>=2.10.0``
|
|
89
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
90
|
+
========================================== ==================
|
|
91
|
+
|
|
92
|
+
Cross provider package dependencies
|
|
93
|
+
-----------------------------------
|
|
94
|
+
|
|
95
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
96
|
+
You need to install the specified providers in order to use them.
|
|
97
|
+
|
|
98
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
99
|
+
|
|
100
|
+
.. code-block:: bash
|
|
101
|
+
|
|
102
|
+
pip install apache-airflow-providers-standard[common.compat]
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
================================================================================================================== =================
|
|
106
|
+
Dependent package Extra
|
|
107
|
+
================================================================================================================== =================
|
|
108
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
109
|
+
================================================================================================================== =================
|
|
89
110
|
|
|
90
111
|
The changelog for the provider package can be found in the
|
|
91
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/1.9.
|
|
112
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/1.9.1/changelog.html>`_.
|
|
92
113
|
|
{apache_airflow_providers_standard-1.9.0rc2 → apache_airflow_providers_standard-1.9.1rc1}/README.rst
RENAMED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-standard``
|
|
25
25
|
|
|
26
|
-
Release: ``1.9.
|
|
26
|
+
Release: ``1.9.1``
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
Airflow Standard Provider
|
|
@@ -36,7 +36,7 @@ This is a provider package for ``standard`` provider. All classes for this provi
|
|
|
36
36
|
are in ``airflow.providers.standard`` python package.
|
|
37
37
|
|
|
38
38
|
You can find package information and changelog for the provider
|
|
39
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-standard/1.9.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-standard/1.9.1/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
@@ -50,11 +50,31 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
|
50
50
|
Requirements
|
|
51
51
|
------------
|
|
52
52
|
|
|
53
|
-
|
|
54
|
-
PIP package
|
|
55
|
-
|
|
56
|
-
``apache-airflow``
|
|
57
|
-
|
|
53
|
+
========================================== ==================
|
|
54
|
+
PIP package Version required
|
|
55
|
+
========================================== ==================
|
|
56
|
+
``apache-airflow`` ``>=2.10.0``
|
|
57
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
58
|
+
========================================== ==================
|
|
59
|
+
|
|
60
|
+
Cross provider package dependencies
|
|
61
|
+
-----------------------------------
|
|
62
|
+
|
|
63
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
64
|
+
You need to install the specified providers in order to use them.
|
|
65
|
+
|
|
66
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
67
|
+
|
|
68
|
+
.. code-block:: bash
|
|
69
|
+
|
|
70
|
+
pip install apache-airflow-providers-standard[common.compat]
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
================================================================================================================== =================
|
|
74
|
+
Dependent package Extra
|
|
75
|
+
================================================================================================================== =================
|
|
76
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
77
|
+
================================================================================================================== =================
|
|
58
78
|
|
|
59
79
|
The changelog for the provider package can be found in the
|
|
60
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/1.9.
|
|
80
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/1.9.1/changelog.html>`_.
|
|
@@ -35,6 +35,23 @@
|
|
|
35
35
|
Changelog
|
|
36
36
|
---------
|
|
37
37
|
|
|
38
|
+
1.9.1
|
|
39
|
+
.....
|
|
40
|
+
|
|
41
|
+
Misc
|
|
42
|
+
~~~~
|
|
43
|
+
|
|
44
|
+
* ``Simplify version-specific imports in the Standard provider (#56867)``
|
|
45
|
+
* ``Throw NotImplementedError error when fail_when_dag_is_paused is used in TriggerDagRunOperator with Airflow 3.x (#56965)``
|
|
46
|
+
|
|
47
|
+
Doc-only
|
|
48
|
+
~~~~~~~~
|
|
49
|
+
|
|
50
|
+
* ``Correct 'Dag' to 'DAG' for code snippets in provider docs (#56727)``
|
|
51
|
+
|
|
52
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
53
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
54
|
+
|
|
38
55
|
1.9.0
|
|
39
56
|
.....
|
|
40
57
|
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
|
|
2
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
or more contributor license agreements. See the NOTICE file
|
|
4
|
+
distributed with this work for additional information
|
|
5
|
+
regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
to you under the Apache License, Version 2.0 (the
|
|
7
|
+
"License"); you may not use this file except in compliance
|
|
8
|
+
with the License. You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
13
|
+
software distributed under the License is distributed on an
|
|
14
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
KIND, either express or implied. See the License for the
|
|
16
|
+
specific language governing permissions and limitations
|
|
17
|
+
under the License.
|
|
18
|
+
|
|
19
|
+
``apache-airflow-providers-standard``
|
|
20
|
+
===========================================
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
.. toctree::
|
|
24
|
+
:hidden:
|
|
25
|
+
:maxdepth: 1
|
|
26
|
+
:caption: Basics
|
|
27
|
+
|
|
28
|
+
Home <self>
|
|
29
|
+
Changelog <changelog>
|
|
30
|
+
Security <security>
|
|
31
|
+
|
|
32
|
+
.. toctree::
|
|
33
|
+
:hidden:
|
|
34
|
+
:maxdepth: 1
|
|
35
|
+
:caption: Guides
|
|
36
|
+
|
|
37
|
+
Operators <operators/index>
|
|
38
|
+
Sensors <sensors/index>
|
|
39
|
+
Configuration <configurations-ref>
|
|
40
|
+
|
|
41
|
+
.. toctree::
|
|
42
|
+
:hidden:
|
|
43
|
+
:maxdepth: 1
|
|
44
|
+
:caption: Resources
|
|
45
|
+
|
|
46
|
+
Example Dags <_api/airflow/providers/standard/example_dags/index>
|
|
47
|
+
PyPI Repository <https://pypi.org/project/apache-airflow-providers-standard/>
|
|
48
|
+
Installing from sources <installing-providers-from-sources>
|
|
49
|
+
Python API <_api/airflow/providers/standard/index>
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
.. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN AT RELEASE TIME!
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
.. toctree::
|
|
56
|
+
:hidden:
|
|
57
|
+
:maxdepth: 1
|
|
58
|
+
:caption: Commits
|
|
59
|
+
|
|
60
|
+
Detailed list of commits <commits>
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
apache-airflow-providers-standard package
|
|
64
|
+
------------------------------------------------------
|
|
65
|
+
|
|
66
|
+
Airflow Standard Provider
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
Release: 1.9.1
|
|
70
|
+
|
|
71
|
+
Provider package
|
|
72
|
+
----------------
|
|
73
|
+
|
|
74
|
+
This package is for the ``standard`` provider.
|
|
75
|
+
All classes for this package are included in the ``airflow.providers.standard`` python package.
|
|
76
|
+
|
|
77
|
+
Installation
|
|
78
|
+
------------
|
|
79
|
+
|
|
80
|
+
You can install this package on top of an existing Airflow installation via
|
|
81
|
+
``pip install apache-airflow-providers-standard``.
|
|
82
|
+
For the minimum Airflow version supported, see ``Requirements`` below.
|
|
83
|
+
|
|
84
|
+
Requirements
|
|
85
|
+
------------
|
|
86
|
+
|
|
87
|
+
The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``.
|
|
88
|
+
|
|
89
|
+
========================================== ==================
|
|
90
|
+
PIP package Version required
|
|
91
|
+
========================================== ==================
|
|
92
|
+
``apache-airflow`` ``>=2.10.0``
|
|
93
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
94
|
+
========================================== ==================
|
|
95
|
+
|
|
96
|
+
Cross provider package dependencies
|
|
97
|
+
-----------------------------------
|
|
98
|
+
|
|
99
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
100
|
+
You need to install the specified provider distributions in order to use them.
|
|
101
|
+
|
|
102
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
103
|
+
|
|
104
|
+
.. code-block:: bash
|
|
105
|
+
|
|
106
|
+
pip install apache-airflow-providers-standard[common.compat]
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
================================================================================================================== =================
|
|
110
|
+
Dependent package Extra
|
|
111
|
+
================================================================================================================== =================
|
|
112
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
113
|
+
================================================================================================================== =================
|
|
114
|
+
|
|
115
|
+
Downloading official packages
|
|
116
|
+
-----------------------------
|
|
117
|
+
|
|
118
|
+
You can download officially released packages and verify their checksums and signatures from the
|
|
119
|
+
`Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
|
|
120
|
+
|
|
121
|
+
* `The apache-airflow-providers-standard 1.9.1 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_standard-1.9.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_standard-1.9.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_standard-1.9.1.tar.gz.sha512>`__)
|
|
122
|
+
* `The apache-airflow-providers-standard 1.9.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_standard-1.9.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_standard-1.9.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_standard-1.9.1-py3-none-any.whl.sha512>`__)
|
|
@@ -302,7 +302,7 @@ locations in the Dag constructor call.
|
|
|
302
302
|
.. code-block:: python
|
|
303
303
|
:emphasize-lines: 1
|
|
304
304
|
|
|
305
|
-
with
|
|
305
|
+
with DAG("example_bash_dag", ..., template_searchpath="/opt/scripts"):
|
|
306
306
|
t2 = BashOperator(
|
|
307
307
|
task_id="bash_example",
|
|
308
308
|
bash_command="test.sh ",
|
|
@@ -21,12 +21,13 @@ name: Standard
|
|
|
21
21
|
description: |
|
|
22
22
|
Airflow Standard Provider
|
|
23
23
|
state: ready
|
|
24
|
-
source-date-epoch:
|
|
24
|
+
source-date-epoch: 1761117654
|
|
25
25
|
# Note that those versions are maintained by release manager - do not update them manually
|
|
26
26
|
# with the exception of case where other provider in sources has >= new provider version.
|
|
27
27
|
# In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have
|
|
28
28
|
# to be done in the same PR
|
|
29
29
|
versions:
|
|
30
|
+
- 1.9.1
|
|
30
31
|
- 1.9.0
|
|
31
32
|
- 1.8.0
|
|
32
33
|
- 1.7.0
|
|
@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
|
|
|
25
25
|
|
|
26
26
|
[project]
|
|
27
27
|
name = "apache-airflow-providers-standard"
|
|
28
|
-
version = "1.9.
|
|
28
|
+
version = "1.9.1rc1"
|
|
29
29
|
description = "Provider package apache-airflow-providers-standard for Apache Airflow"
|
|
30
30
|
readme = "README.rst"
|
|
31
31
|
authors = [
|
|
@@ -58,6 +58,7 @@ requires-python = ">=3.10"
|
|
|
58
58
|
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
|
|
59
59
|
dependencies = [
|
|
60
60
|
"apache-airflow>=2.10.0rc1",
|
|
61
|
+
"apache-airflow-providers-common-compat>=1.8.0rc1",
|
|
61
62
|
]
|
|
62
63
|
|
|
63
64
|
[dependency-groups]
|
|
@@ -65,6 +66,7 @@ dev = [
|
|
|
65
66
|
"apache-airflow",
|
|
66
67
|
"apache-airflow-task-sdk",
|
|
67
68
|
"apache-airflow-devel-common",
|
|
69
|
+
"apache-airflow-providers-common-compat",
|
|
68
70
|
# Additional devel dependencies (do not remove this line and add extra development dependencies)
|
|
69
71
|
"apache-airflow-providers-mysql",
|
|
70
72
|
]
|
|
@@ -95,8 +97,8 @@ apache-airflow-providers-common-sql = {workspace = true}
|
|
|
95
97
|
apache-airflow-providers-standard = {workspace = true}
|
|
96
98
|
|
|
97
99
|
[project.urls]
|
|
98
|
-
"Documentation" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-standard/1.9.
|
|
99
|
-
"Changelog" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-standard/1.9.
|
|
100
|
+
"Documentation" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-standard/1.9.1"
|
|
101
|
+
"Changelog" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-standard/1.9.1/changelog.html"
|
|
100
102
|
"Bug Tracker" = "https://github.com/apache/airflow/issues"
|
|
101
103
|
"Source Code" = "https://github.com/apache/airflow"
|
|
102
104
|
"Slack Chat" = "https://s.apache.org/airflow-slack"
|
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "1.9.
|
|
32
|
+
__version__ = "1.9.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.10.0"
|
|
@@ -21,24 +21,18 @@ import warnings
|
|
|
21
21
|
from collections.abc import Callable, Collection, Mapping, Sequence
|
|
22
22
|
from typing import TYPE_CHECKING, Any, ClassVar
|
|
23
23
|
|
|
24
|
-
from airflow.providers.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
DecoratedOperator,
|
|
31
|
-
TaskDecorator,
|
|
32
|
-
task_decorator_factory,
|
|
33
|
-
)
|
|
34
|
-
|
|
24
|
+
from airflow.providers.common.compat.sdk import (
|
|
25
|
+
DecoratedOperator,
|
|
26
|
+
TaskDecorator,
|
|
27
|
+
context_merge,
|
|
28
|
+
task_decorator_factory,
|
|
29
|
+
)
|
|
35
30
|
from airflow.providers.standard.operators.bash import BashOperator
|
|
36
|
-
from airflow.providers.standard.version_compat import context_merge
|
|
37
31
|
from airflow.sdk.definitions._internal.types import SET_DURING_EXECUTION
|
|
38
32
|
from airflow.utils.operator_helpers import determine_kwargs
|
|
39
33
|
|
|
40
34
|
if TYPE_CHECKING:
|
|
41
|
-
from airflow.
|
|
35
|
+
from airflow.providers.common.compat.sdk import Context
|
|
42
36
|
|
|
43
37
|
|
|
44
38
|
class _BashDecoratedOperator(DecoratedOperator, BashOperator):
|
|
@@ -19,18 +19,12 @@ from __future__ import annotations
|
|
|
19
19
|
from collections.abc import Callable
|
|
20
20
|
from typing import TYPE_CHECKING
|
|
21
21
|
|
|
22
|
-
from airflow.providers.
|
|
23
|
-
|
|
24
|
-
if AIRFLOW_V_3_0_PLUS:
|
|
25
|
-
from airflow.sdk.bases.decorator import task_decorator_factory
|
|
26
|
-
else:
|
|
27
|
-
from airflow.decorators.base import task_decorator_factory # type: ignore[no-redef]
|
|
28
|
-
|
|
22
|
+
from airflow.providers.common.compat.sdk import task_decorator_factory
|
|
29
23
|
from airflow.providers.standard.decorators.python import _PythonDecoratedOperator
|
|
30
24
|
from airflow.providers.standard.operators.python import BranchExternalPythonOperator
|
|
31
25
|
|
|
32
26
|
if TYPE_CHECKING:
|
|
33
|
-
from airflow.
|
|
27
|
+
from airflow.providers.common.compat.sdk import TaskDecorator
|
|
34
28
|
|
|
35
29
|
|
|
36
30
|
class _BranchExternalPythonDecoratedOperator(_PythonDecoratedOperator, BranchExternalPythonOperator):
|
|
@@ -19,17 +19,12 @@ from __future__ import annotations
|
|
|
19
19
|
from collections.abc import Callable
|
|
20
20
|
from typing import TYPE_CHECKING
|
|
21
21
|
|
|
22
|
-
from airflow.providers.
|
|
23
|
-
|
|
24
|
-
if AIRFLOW_V_3_0_PLUS:
|
|
25
|
-
from airflow.sdk.bases.decorator import task_decorator_factory
|
|
26
|
-
else:
|
|
27
|
-
from airflow.decorators.base import task_decorator_factory # type: ignore[no-redef]
|
|
22
|
+
from airflow.providers.common.compat.sdk import task_decorator_factory
|
|
28
23
|
from airflow.providers.standard.decorators.python import _PythonDecoratedOperator
|
|
29
24
|
from airflow.providers.standard.operators.python import BranchPythonOperator
|
|
30
25
|
|
|
31
26
|
if TYPE_CHECKING:
|
|
32
|
-
from airflow.
|
|
27
|
+
from airflow.providers.common.compat.sdk import TaskDecorator
|
|
33
28
|
|
|
34
29
|
|
|
35
30
|
class _BranchPythonDecoratedOperator(_PythonDecoratedOperator, BranchPythonOperator):
|
|
@@ -19,17 +19,12 @@ from __future__ import annotations
|
|
|
19
19
|
from collections.abc import Callable
|
|
20
20
|
from typing import TYPE_CHECKING
|
|
21
21
|
|
|
22
|
-
from airflow.providers.
|
|
23
|
-
|
|
24
|
-
if AIRFLOW_V_3_0_PLUS:
|
|
25
|
-
from airflow.sdk.bases.decorator import task_decorator_factory
|
|
26
|
-
else:
|
|
27
|
-
from airflow.decorators.base import task_decorator_factory # type: ignore[no-redef]
|
|
22
|
+
from airflow.providers.common.compat.sdk import task_decorator_factory
|
|
28
23
|
from airflow.providers.standard.decorators.python import _PythonDecoratedOperator
|
|
29
24
|
from airflow.providers.standard.operators.python import BranchPythonVirtualenvOperator
|
|
30
25
|
|
|
31
26
|
if TYPE_CHECKING:
|
|
32
|
-
from airflow.
|
|
27
|
+
from airflow.providers.common.compat.sdk import TaskDecorator
|
|
33
28
|
|
|
34
29
|
|
|
35
30
|
class _BranchPythonVirtualenvDecoratedOperator(_PythonDecoratedOperator, BranchPythonVirtualenvOperator):
|
|
@@ -19,17 +19,12 @@ from __future__ import annotations
|
|
|
19
19
|
from collections.abc import Callable
|
|
20
20
|
from typing import TYPE_CHECKING
|
|
21
21
|
|
|
22
|
-
from airflow.providers.
|
|
23
|
-
|
|
24
|
-
if AIRFLOW_V_3_0_PLUS:
|
|
25
|
-
from airflow.sdk.bases.decorator import task_decorator_factory
|
|
26
|
-
else:
|
|
27
|
-
from airflow.decorators.base import task_decorator_factory # type: ignore[no-redef]
|
|
22
|
+
from airflow.providers.common.compat.sdk import task_decorator_factory
|
|
28
23
|
from airflow.providers.standard.decorators.python import _PythonDecoratedOperator
|
|
29
24
|
from airflow.providers.standard.operators.python import ExternalPythonOperator
|
|
30
25
|
|
|
31
26
|
if TYPE_CHECKING:
|
|
32
|
-
from airflow.
|
|
27
|
+
from airflow.providers.common.compat.sdk import TaskDecorator
|
|
33
28
|
|
|
34
29
|
|
|
35
30
|
class _PythonExternalDecoratedOperator(_PythonDecoratedOperator, ExternalPythonOperator):
|
|
@@ -19,16 +19,11 @@ from __future__ import annotations
|
|
|
19
19
|
from collections.abc import Callable, Sequence
|
|
20
20
|
from typing import TYPE_CHECKING
|
|
21
21
|
|
|
22
|
+
from airflow.providers.common.compat.sdk import DecoratedOperator, task_decorator_factory
|
|
22
23
|
from airflow.providers.standard.operators.python import PythonOperator
|
|
23
|
-
from airflow.providers.standard.version_compat import AIRFLOW_V_3_0_PLUS
|
|
24
|
-
|
|
25
|
-
if AIRFLOW_V_3_0_PLUS:
|
|
26
|
-
from airflow.sdk.bases.decorator import DecoratedOperator, task_decorator_factory
|
|
27
|
-
else:
|
|
28
|
-
from airflow.decorators.base import DecoratedOperator, task_decorator_factory # type: ignore[no-redef]
|
|
29
24
|
|
|
30
25
|
if TYPE_CHECKING:
|
|
31
|
-
from airflow.
|
|
26
|
+
from airflow.providers.common.compat.sdk import TaskDecorator
|
|
32
27
|
|
|
33
28
|
|
|
34
29
|
class _PythonDecoratedOperator(DecoratedOperator, PythonOperator):
|
|
@@ -19,19 +19,12 @@ from __future__ import annotations
|
|
|
19
19
|
from collections.abc import Callable
|
|
20
20
|
from typing import TYPE_CHECKING
|
|
21
21
|
|
|
22
|
-
from airflow.providers.
|
|
23
|
-
|
|
24
|
-
if AIRFLOW_V_3_0_PLUS:
|
|
25
|
-
from airflow.sdk.bases.decorator import task_decorator_factory
|
|
26
|
-
else:
|
|
27
|
-
from airflow.decorators.base import task_decorator_factory # type: ignore[no-redef]
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
from airflow.providers.common.compat.sdk import task_decorator_factory
|
|
30
23
|
from airflow.providers.standard.decorators.python import _PythonDecoratedOperator
|
|
31
24
|
from airflow.providers.standard.operators.python import PythonVirtualenvOperator
|
|
32
25
|
|
|
33
26
|
if TYPE_CHECKING:
|
|
34
|
-
from airflow.
|
|
27
|
+
from airflow.providers.common.compat.sdk import TaskDecorator
|
|
35
28
|
|
|
36
29
|
|
|
37
30
|
class _PythonVirtualenvDecoratedOperator(_PythonDecoratedOperator, PythonVirtualenvOperator):
|
|
@@ -20,18 +20,11 @@ from __future__ import annotations
|
|
|
20
20
|
from collections.abc import Callable, Sequence
|
|
21
21
|
from typing import TYPE_CHECKING, ClassVar
|
|
22
22
|
|
|
23
|
-
from airflow.providers.
|
|
24
|
-
|
|
25
|
-
if AIRFLOW_V_3_0_PLUS:
|
|
26
|
-
from airflow.sdk.bases.decorator import get_unique_task_id, task_decorator_factory
|
|
27
|
-
else:
|
|
28
|
-
from airflow.decorators.base import get_unique_task_id, task_decorator_factory # type: ignore[no-redef]
|
|
29
|
-
|
|
30
|
-
|
|
23
|
+
from airflow.providers.common.compat.sdk import get_unique_task_id, task_decorator_factory
|
|
31
24
|
from airflow.providers.standard.sensors.python import PythonSensor
|
|
32
25
|
|
|
33
26
|
if TYPE_CHECKING:
|
|
34
|
-
from airflow.
|
|
27
|
+
from airflow.providers.common.compat.sdk import TaskDecorator
|
|
35
28
|
|
|
36
29
|
|
|
37
30
|
class DecoratedSensorOperator(PythonSensor):
|
|
@@ -19,18 +19,12 @@ from __future__ import annotations
|
|
|
19
19
|
from collections.abc import Callable
|
|
20
20
|
from typing import TYPE_CHECKING
|
|
21
21
|
|
|
22
|
-
from airflow.providers.
|
|
23
|
-
|
|
24
|
-
if AIRFLOW_V_3_0_PLUS:
|
|
25
|
-
from airflow.sdk.bases.decorator import task_decorator_factory
|
|
26
|
-
else:
|
|
27
|
-
from airflow.decorators.base import task_decorator_factory # type: ignore[no-redef]
|
|
28
|
-
|
|
22
|
+
from airflow.providers.common.compat.sdk import task_decorator_factory
|
|
29
23
|
from airflow.providers.standard.decorators.python import _PythonDecoratedOperator
|
|
30
24
|
from airflow.providers.standard.operators.python import ShortCircuitOperator
|
|
31
25
|
|
|
32
26
|
if TYPE_CHECKING:
|
|
33
|
-
from airflow.
|
|
27
|
+
from airflow.providers.common.compat.sdk import TaskDecorator
|
|
34
28
|
|
|
35
29
|
|
|
36
30
|
class _ShortCircuitDecoratedOperator(_PythonDecoratedOperator, ShortCircuitOperator):
|
|
@@ -21,20 +21,14 @@ import ast
|
|
|
21
21
|
from collections.abc import Callable
|
|
22
22
|
from typing import TYPE_CHECKING, Any
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
except ModuleNotFoundError:
|
|
30
|
-
from airflow.decorators.base import (
|
|
31
|
-
DecoratedOperator,
|
|
32
|
-
TaskDecorator,
|
|
33
|
-
task_decorator_factory,
|
|
34
|
-
)
|
|
24
|
+
from airflow.providers.common.compat.sdk import (
|
|
25
|
+
DecoratedOperator,
|
|
26
|
+
TaskDecorator,
|
|
27
|
+
task_decorator_factory,
|
|
28
|
+
)
|
|
35
29
|
|
|
36
30
|
if TYPE_CHECKING:
|
|
37
|
-
from airflow.
|
|
31
|
+
from airflow.providers.common.compat.sdk import Context
|
|
38
32
|
|
|
39
33
|
|
|
40
34
|
class _StubOperator(DecoratedOperator):
|
|
@@ -20,16 +20,11 @@ from __future__ import annotations
|
|
|
20
20
|
import pendulum
|
|
21
21
|
|
|
22
22
|
from airflow.exceptions import AirflowSkipException
|
|
23
|
+
from airflow.providers.common.compat.sdk import TriggerRule
|
|
23
24
|
from airflow.providers.standard.operators.empty import EmptyOperator
|
|
24
25
|
from airflow.providers.standard.utils.weekday import WeekDay
|
|
25
26
|
from airflow.sdk import chain, dag, task
|
|
26
27
|
|
|
27
|
-
try:
|
|
28
|
-
from airflow.sdk import TriggerRule
|
|
29
|
-
except ImportError:
|
|
30
|
-
# Compatibility for Airflow < 3.1
|
|
31
|
-
from airflow.utils.trigger_rule import TriggerRule # type: ignore[no-redef,attr-defined]
|
|
32
|
-
|
|
33
28
|
|
|
34
29
|
@dag(schedule=None, start_date=pendulum.datetime(2023, 1, 1, tz="UTC"), catchup=False)
|
|
35
30
|
def example_bash_decorator():
|
|
@@ -29,6 +29,7 @@ from pathlib import Path
|
|
|
29
29
|
|
|
30
30
|
import pendulum
|
|
31
31
|
|
|
32
|
+
from airflow.providers.common.compat.sdk import TriggerRule
|
|
32
33
|
from airflow.providers.standard.operators.empty import EmptyOperator
|
|
33
34
|
from airflow.providers.standard.operators.python import (
|
|
34
35
|
BranchExternalPythonOperator,
|
|
@@ -40,12 +41,6 @@ from airflow.providers.standard.operators.python import (
|
|
|
40
41
|
)
|
|
41
42
|
from airflow.sdk import DAG, Label
|
|
42
43
|
|
|
43
|
-
try:
|
|
44
|
-
from airflow.sdk import TriggerRule
|
|
45
|
-
except ImportError:
|
|
46
|
-
# Compatibility for Airflow < 3.1
|
|
47
|
-
from airflow.utils.trigger_rule import TriggerRule # type: ignore[no-redef,attr-defined]
|
|
48
|
-
|
|
49
44
|
PATH_TO_PYTHON_BINARY = sys.executable
|
|
50
45
|
|
|
51
46
|
with DAG(
|
|
@@ -30,15 +30,10 @@ import tempfile
|
|
|
30
30
|
|
|
31
31
|
import pendulum
|
|
32
32
|
|
|
33
|
+
from airflow.providers.common.compat.sdk import TriggerRule
|
|
33
34
|
from airflow.providers.standard.operators.empty import EmptyOperator
|
|
34
35
|
from airflow.sdk import DAG, Label, task
|
|
35
36
|
|
|
36
|
-
try:
|
|
37
|
-
from airflow.sdk import TriggerRule
|
|
38
|
-
except ImportError:
|
|
39
|
-
# Compatibility for Airflow < 3.1
|
|
40
|
-
from airflow.utils.trigger_rule import TriggerRule # type: ignore[no-redef,attr-defined]
|
|
41
|
-
|
|
42
37
|
PATH_TO_PYTHON_BINARY = sys.executable
|
|
43
38
|
|
|
44
39
|
with DAG(
|